File tree Expand file tree Collapse file tree 3 files changed +58
-2
lines changed Expand file tree Collapse file tree 3 files changed +58
-2
lines changed Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="en ">
3
+ < head >
4
+ < meta charset ="UTF-8 ">
5
+ < title > Checkbox Enabled Download</ title >
6
+ < style >
7
+ body {
8
+ background-color : # 000 ; /* Black background */
9
+ color : # fff ; /* White text */
10
+ }
11
+ .submit-btn : disabled {
12
+ color : # 999 ;
13
+ background-color : # ccc ;
14
+ }
15
+ .submit-btn : enabled {
16
+ color : # fff ;
17
+ background-color : # 007bff ;
18
+ cursor : pointer;
19
+ }
20
+ input [type = "checkbox" ] {
21
+ accent-color : # 007bff ; /* Change checkbox color */
22
+ }
23
+
24
+ label {
25
+ cursor : pointer;
26
+ }
27
+ </ style >
28
+ </ head >
29
+ < body >
30
+ < center >
31
+ < img src ="MLH.jpg "/> < br >
32
+ < br > < form id ="downloadForm ">
33
+ < label >
34
+ < input type ="checkbox " id ="agreeCheckbox ">
35
+ By checking this box and registering you agree to only use
36
+ < br > the data provided during the lab for the specific exercises proposed
37
+ < br > and shall not onward supply the Official Media Data Feed
38
+ < br > and/or Fixture Lists Feed save to any end users.
39
+ </ label >
40
+ < br > < br >
41
+ < button type ="button " id ="downloadBtn " class ="submit-btn " disabled > Download File</ button >
42
+ </ form >
43
+ </ center >
44
+ < script >
45
+ document . getElementById ( 'agreeCheckbox' ) . addEventListener ( 'change' , function ( e ) {
46
+ document . getElementById ( 'downloadBtn' ) . disabled = ! e . target . checked ;
47
+ } ) ;
48
+
49
+ document . getElementById ( 'downloadBtn' ) . addEventListener ( 'click' , function ( ) {
50
+ window . location . href = 'https://objectstorage.us-ashburn-1.oraclecloud.com/p/mGD6g18cFuoKCInN_AoSp3SBqZ02leUQZhH5EkKCkq97WRxEHiibkpGRjLRziPEY/n/oradbclouducm/b/hackathon/o/EPL-2019-2020%20-%20For%20Oracle.zip' ;
51
+ } ) ;
52
+ </ script >
53
+
54
+ </ body >
55
+ </ html >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >org.springframework.boot</groupId >
7
7
<artifactId >spring-boot-starter-parent</artifactId >
8
- <version >2.7.1 </version >
8
+ <version >3.1.4 </version >
9
9
<relativePath />
10
10
</parent >
11
11
<groupId >oracleai</groupId >
17
17
<properties >
18
18
<spring-cloud .version>2021.0.5</spring-cloud .version>
19
19
<oracle .jdbc.version>21.7.0.0</oracle .jdbc.version>
20
- <spring .boot.version>2.7.6</spring .boot.version>
20
+ <spring .boot.version>3.1.2</spring .boot.version>
21
+ <snakeyaml .version>1.31</snakeyaml .version>
21
22
<spring .vault.version>3.1.1</spring .vault.version>
22
23
<oci .sdk.version>3.29.0</oci .sdk.version>
23
24
<jib-maven-plugin .version>3.3.1</jib-maven-plugin .version>
You can’t perform that action at this time.
0 commit comments