-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
25 lines (25 loc) · 971 Bytes
/
popup.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
<!doctype html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="styles/styles.css">
<title>Rope</title>
</head>
<body>
<div id = "LoginPage">
<h1>Get started with your email</h1>
<!-- <h2> Get started with your email </h2> -->
<input id="email" type="text" placeholder="Email" name="Email" required>
<input id="password" type="password" placeholder="Password" name="psw" required>
<button id="login-button">Login</button>
<button id="register-button">Register</button>
<div id="login-done", style="display:none">Login successful!</div>
<div id="register-done", style="display:none">Registration successful!</div>
</div>
<div id = "HomePage" style ="display:none">
<h1>Rope</h1>
<button id="logout-button">Logout</button>
</div>
<script src="https://www.gstatic.com/firebasejs/5.4.2/firebase.js"></script>
<script src="build/popup.js"></script>
</body>
</html>