-
Notifications
You must be signed in to change notification settings - Fork 2
/
signup.html
70 lines (65 loc) · 2.28 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
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
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Seller Sign Up - iTokri</title>
<link rel="stylesheet" href="signup.css" />
</head>
<body>
<header>
<nav>
<h1>iTokri</h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About us</a></li>
<li><a href="contact.html">Contact us</a></li>
<li><a href="help.html">Help</a></li>
</ul>
</nav>
</header>
<div class="container">
<div class="signup-box">
<h2>Create a Seller Account</h2>
<!-- Google Signup Option -->
<div class="google-signup">
<a href="#" class="google-btn">
<img src="googleLogo.png" alt="Google Logo" />
Sign up with Google
</a>
</div>
<p>Or sign up using your email:</p>
<form id="signupForm" action="dashboard.html" method="POST">
<div class="input-field">
<label for="name">Full Name:</label>
<input type="text" id="name" name="name" required />
</div>
<div class="input-field">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required />
</div>
<div class="input-field">
<label for="password">Password:</label>
<input type="password" id="password" name="password" required />
</div>
<div class="input-field">
<label for="confirm-password">Confirm Password:</label>
<input
type="password"
id="confirm-password"
name="confirm-password"
required
/>
</div>
<div class="input-field">
<button type="submit">Sign Up</button>
</div>
</form>
</div>
</div>
<!-- Include Firebase SDKs before your custom script -->
<script src="https://www.gstatic.com/firebasejs/9.18.0/firebase-app-compat.js"></script>
<script src="https://www.gstatic.com/firebasejs/9.18.0/firebase-auth-compat.js"></script>
<script src="signup.js"></script>
</body>
</html>