-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (43 loc) · 2.03 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
<title>quarantinis</title>
</head>
<body id="landing-page-body">
<main>
<div id="container">
<div class="row">
<div class="col s12">
<div class="landing-page-title">
<h1 style="text-align: center;">quarantinis</h1>
<p id="enterBirthday">Please enter your birth date:</p>
<div class="birthdate">
<input id="user-birthday" type="text" class="datepicker">
</div>
<button id="submit-birthday">Submit</button>
</div>
<div id="modal1" class="modal">
<div class="modal-content">
<p>Ooops! You may be on the wrong page!</p>
</div>
<div class="modal-footer">
<a href="https://juicyjuice.com/" class="modal-close waves-effect waves-green btn-flat">Agree</a>
</div>
</div>
</div>
</div>
</div>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js"
integrity="sha512-qTXRIMyZIFb8iQcfjXWCO8+M5Tbc38Qi5WzdPOYZHIlZpzBHG3L3by84BBBOiRGiEb7KKtAOAs5qYdUiZiQNNQ=="
crossorigin="anonymous"></script>
<script src="assets/javascript/script.js"></script>
</body>
</html>