-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
35 lines (27 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<title>Study Buddies: Meet New Study Partners! (Firebase Demo App)</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/styles.css">
<script src="https://www.gstatic.com/firebasejs/4.6.2/firebase.js" defer></script>
<script src="/homepage.js" defer></script>
</head>
<body>
<h1 id="firebase-greeting"></h1>
<header id="header">
<div class="vertical-center">
<h1 id="title">Study Buddies: Meet New Study Partners!</h1>
<div id="controls">
<button id="login-button" class="button">Signup / Login to Meet New Study Partners!</button>
<button id="profile-button" class="button"><a href="myprofile.html">Create / Update Your Profile</a></button>
<button id="logout-button" class="button">Logout</button>
</div>
</div>
</header>
<div id="userslist">
</div>
</body>
</html>