-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsignUp.html
More file actions
45 lines (43 loc) · 1.36 KB
/
signUp.html
File metadata and controls
45 lines (43 loc) · 1.36 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>StrayLife - Sign Up</title>
<link rel="stylesheet" href="css/loginpage.css" />
<script src="https://www.gstatic.com/firebasejs/10.0.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.0.0/firebase-firestore-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/10.0.0/firebase-auth-compat.js"></script>
</head>
<body>
<div class="form">
<!-- Email -->
<div class="email">
<label for="email">Email</label>
<input
type="email"
name="email"
id="email"
placeholder="Email Address"
/>
</div>
<!-- passWord -->
<div class="pass">
<label for="password">Password</label>
<input
type="password"
name="password"
id="password"
placeholder="Password"
/>
</div>
<!-- Sign Up button -->
<button id="submit-btn" onclick="signUp()">Sign Up</button>
<!-- Sign In option -->
<p>Already have an account ?</p>
<span><a href="signIn.html">Sign In</a></span>
</div>
<script src="js/login.js"></script>
</body>
</html>