forked from BenjaminSao/Vaccurate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
83 lines (66 loc) · 3.34 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!doctype html>
<html lang="en">
<head>
<link rel="shortcut icon" href="Assets/favicon.ico" sizes="256x256">
<!-- Required meta tags -->
<meta charset="utf-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<!-- CSS File -->
<link href="style.css" rel="stylesheet">
<!-- google fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<title>Vaccurate</title>
<meta property="og:title" content="Vaccurate" />
<meta property="og:description" content="Data driven vaccine distribution" />
</head>
<body>
<!-- Firebase Setup -->
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.2.2/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/8.2.2/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.2.2/firebase-firestore.js"></script>
<script>
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
var firebaseConfig = {
apiKey: "AIzaSyDEFiwbLgH5Ah2oD_kS9sNDKexmaeyQVcU",
authDomain: "vaccurate-96147.firebaseapp.com",
databaseURL: "https://vaccurate-96147-default-rtdb.firebaseio.com",
projectId: "vaccurate-96147",
storageBucket: "vaccurate-96147.appspot.com",
messagingSenderId: "464691517570",
appId: "1:464691517570:web:fe4f5a7168bbe474f5fc9b",
measurementId: "G-ESQ62FXE3R"
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>
<!-- Firebase Setup -->
<div class="container-fluid background" style="height: 100vh;">
<button type="button" class="iconbut"><img src="assets/cornericon.png" class="icon" onclick="window.location.href='home.html'"></button>
<div class="row d-flex justify-content-center" style="height:100vh">
<div class="newcol align-self-center">
<!-- question counter -->
<p class="counter" id="counter">1/12</p>
<div class="spacer"></div>
<!-- question -->
<p class="question" id="prompt">What's your first name?</p>
<div class="spacer"></div>
<!-- type style -->
<input required placeholder="Type your response here"type="text" id="input" class="entertext"><br><br>
<!-- next button -->
<button type="button" class="nextbox" onclick="nextQuestion();" id="next">NEXT</button>
</div>
<p class="note">Vaccurate | 2021 nwHacks</p>
</div>
</div>
<script src="index.js"></script>
</body>
</html>