-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (27 loc) · 1.07 KB
/
index.html
File metadata and controls
32 lines (27 loc) · 1.07 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Firebase Auth</title>
<link rel="stylesheet" href="style.css" />
</head>
<body class="fade-in">
<div class="auth-container">
<div class="auth-header">
<img src="./icons8-registration.png">
<h2>Create Account </h2>
<p>Sign up to get started</p>
</div>
<div class="auth-content">
<input type="email" id="signup-email" placeholder="Enter your email" required/>
<input type="password" id="signup-password" placeholder="Create password" required/>
<input type="password" id="confirm-password" placeholder="Confirm password" required/>
<button id="signup-btn">Sign Up</button>
<button id="google-btn" class="google">Continue with Google</button>
<p>Already have an account? <a href="signin.html">Sign In</a></p>
</div>
</div>
<script type="module" src="script.js"></script>
</body>
</html>