-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
73 lines (59 loc) · 2.37 KB
/
main.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>ResQ Main</title>
<meta name="comp1800 boilerplate code" content="my bcit project">
<meta name="author" content="BCIT">
<!-- Bootstrap for Mobile-first, and JQuery -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/26da0e4274.js" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="styles/rippleanimation.css" />
<!-- Optional styles and scripts of your own -->
<link rel="stylesheet" href="styles/style.css" />
<link rel="stylesheet" href="styles/bluepurple.css" />
<style>
</style>
</head>
<body>
<!-------------------------------------->
<!-- The following is HTML for layout -->
<!-------------------------------------->
<br /><br /><br />
<div id="ripple">
<div id="circlebackground">
<div id="circle">
<br /><br /><br /><br />
<p>
<a href="scan.html">Scan<br>QR Code</a>
</p>
</div>
</div>
</div>
<br><br><br><br>
<div id="bar">
<p>No QR Code?</p>
</div>
<!----------------------------------------------->
<!-- JS: Boostrap, Firebase, API related -->
<!----------------------------------------------->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" crossorigin="anonymous">
</script>
<!-- Firebase libraries from CDN -->
<script src="https://www.gstatic.com/firebasejs/8.0.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.0.0/firebase-auth.js"></script>
<script src="https://cdn.firebase.com/libs/firebaseui/3.5.2/firebaseui.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.0.0/firebase-firestore.js"></script>
<script src="scripts/firebase_api.js"></script>
<!--------------------------------------------------------------------->
<!-- JS files: Your own JavaScript functions included here -->
<!--------------------------------------------------------------------->
<script src="scripts/display.js"></script>
</body>
</html>