-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignUp.html
38 lines (26 loc) · 1.05 KB
/
signUp.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
<!DOCTYPE html>
<html lang="en">
<title>Sign Up</title>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="signup_div">
<h3>Authentication Web SignUp</h3>
<input type="email" id="signup_email_field" placeholder="Enter Your Email Address ..." required />
<input type="password" id="signup_pass_field" placeholder="Enter Your Password ..." required />
<button onclick="SignUpFunction()">Create Account</button>
<h3>Already a Account ?</h3>
<a href="index.html">
<button id="signup">Login</button>
</a>
</div>
<script src="https://www.gstatic.com/firebasejs/8.0.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.0.0/firebase-analytics.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.0.0/firebase-auth.js"></script>
<script src="signUp.js"></script>
<script src="auth.js"></script>
</body>
</html>