This repository has been archived by the owner on Mar 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
85 lines (77 loc) · 3.26 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
84
85
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Notre Dame Information Technology Club - NDITC</title>
<link data-page="navbar" rel="stylesheet" href="css/navbar.css">
<link data-page="index" rel="stylesheet" href="css/index.css">
<!-- fonts -->
<link href="css/fonts.css" rel="stylesheet">
<!-- libraries -->
<script src='https://www.gstatic.com/firebasejs/5.4.1/firebase.js' type='text/javascript'></script>
<script src='https://www.gstatic.com/firebasejs/5.4.1/firebase-app.js' type='text/javascript'></script>
<script src='https://www.gstatic.com/firebasejs/5.4.1/firebase-firestore.js' type='text/javascript'></script>
<script src='https://www.gstatic.com/firebasejs/5.4.1/firebase-storage.js' type='text/javascript'></script>
<script src='https://www.gstatic.com/firebasejs/5.4.1/firebase-auth.js' type='text/javascript'></script>
<script src='js/router.js' type='text/javascript'></script>
<!-- Firebase initializations -->
<script>
firebase.initializeApp({
apiKey: "AIzaSyBjEBrWR5GwB2LPzYmD5_QeJHQ7Sq4LL8E",
authDomain: "nditc-db-34a87.firebaseapp.com",
databaseURL: "https://nditc-db-34a87.firebaseio.com",
projectId: "nditc-db-34a87",
storageBucket: "nditc-db-34a87.appspot.com",
messagingSenderId: "697987736168"
});
window.firestore = firebase.firestore();
firestore.settings({
timestampsInSnapshots: true
});
</script>
</head>
<body>
<div class="nav">
<div class="navbar">
<div class="logo-container">
<img src="img/LOGO.png" alt="" class="src"><!--change links-->
</div>
<!--
temporarily commented the navbar. i dont want to fix its responsiveness now :(
<ul>
<li class="active">
<a id="homel" href="#/home">HOME</a>
</li>
<li href="about.html">
<a href="#/activities" id="activitiesl">ACTIVITIES</a>
</li>
<li>
<a href="#/techies" id="techiesl">TECHIES</a>
</li>
<li>
<a href="#/about" id="aboutl">ABOUT US</a>
</li>
<li id="loginl">LOG IN</li>
<li id="logoutl">LOG OUT</li>
</ul>
-->
</div>
</div>
<div id="app"></div>
<!-- the login module -->
<div id='glassfield' style='display:none'></div>
<div id='loginbox' style='display:none'>
<img width="25%" src="/img/login-icon.png" alt="Avatar"><br>
<button id="loginclose"><span></span></button>
<div class="login-container">
<input class="login-item" type="email" id="login-email" placeholder="Enter Email Address">
<input class="login-item" type="password" id="login-password" placeholder="Enter Password">
<button class="login-item login-button" id="login-submit">Login</button>
</div>
<p id="pass-error"></p>
</div>
<script src='js/home.js' type='text/javascript'></script>
</body>
</html>