generated from comp1800/web_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (41 loc) · 1.56 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
<!doctype html>
<html lang="en">
<head>
<title>Login</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous">
<link type="text/css" rel="stylesheet" href="https://www.gstatic.com/firebasejs/ui/4.8.1/firebase-ui-auth.css" />
<!-- firebase -->
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.10.0/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/ui/6.0.0/firebase-ui-auth.js"></script>
<link type="text/css" rel="stylesheet" href="https://www.gstatic.com/firebasejs/ui/6.0.0/firebase-ui-auth.css" />
<script src="scripts/firebase_API.js"></script>
<!-- local styles -->
<link rel="stylesheet" href="styles/login.css">
</head>
<body>
<div id="b1"></div>
<div id="b2"></div>
<div id="wrapper">
<!-- Trophy Image -->
<div id="logo">
<figure>
<img id="trophy_icon" src="images/trophy_icon.png" alt="logo">
</figure>
</div>
<!-- Title -->
<div id="title">
<h1><small>Welcome to</small> Motivator</h1>
</div>
<!-- Login Block -->
<main id="login_block">
<div id="firebaseui-auth-container"></div>
<div id="loader">Loading...</div>
</main>
</div>
<!-- Scripts -->
<script src="scripts/login.js"></script>
</body>
</html>