-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprofile.html
66 lines (53 loc) · 2.36 KB
/
profile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Profile</title>
<link href="styles.css" rel="stylesheet" />
<script src="https://www.gstatic.com/firebasejs/ui/6.0.1/firebase-ui-auth.js"></script>
<link type="text/css" rel="stylesheet" href="https://www.gstatic.com/firebasejs/ui/6.0.1/firebase-ui-auth.css" />
<script src="bower_components/firebaseui/dist/firebaseui.js"></script>
<link type="text/css" rel="stylesheet" href="bower_components/firebaseui/dist/firebaseui.css" />
</head>
<body>
<script src="profile.js"></script>
<div id="homeSidebar" class="sidebar">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="home.html">Home</a>
<a href="map.html">Map</a>
<a href="about.html">About</a>
<a href="terms.html">Our Terms</a>
</div>
<div id="main">
<button class="openbtn" style="font-family: Agbalumo" onclick="openNav()">☰ Menu</button>
</div>
<div id="content">
<h1 id="welcome" class="welcome">Profile Settings</h1>
<div id="firebaseui-auth-container"></div>
<div id="loader">Loading...</div>
<!-- <div class="login-container"> -->
<!-- <h2>Login</h2> -->
<!-- <form id="loginForm"> -->
<!-- <label for="username">Username:</label> -->
<!-- <input type="text" id="username" name="username" required><br> -->
<!-- <label for="password">Password:</label> -->
<!-- <input type="password" id="password" name="password" required><br> -->
<!-- <button type="submit">Login</button> -->
<!-- </form> -->
<!-- </div> -->
<!-- <div id="profilethis" class="about"> -->
<!-- <button id="loginBtn">Login</button> -->
<!-- <button id="signupBtn">Sign Up</button> -->
<!-- <br> -->
<!-- <h3>Scoreboard</h3> -->
<!-- <div id="scoreboard"> -->
<!-- Display user scores here -->
<!-- </div> -->
<!-- <br> -->
<!-- <h3>Change email address</h3> -->
<!-- Add change email form here -->
<!-- </div> -->
</div>
</body>
</html>