-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomer.html
39 lines (37 loc) · 1.21 KB
/
customer.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Business Signup Page</title>
<link rel="stylesheet" href="business.css">
</head>
<body>
<div class="signup-container">
<h1>Signup as Customer</h1>
<form action="signupphp.php" method="post">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email Address:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
</div>
<div class="form-group">
<label for="confirm-password">Confirm Password:</label>
<input type="password" id="confirm-password" name="confirm_password" required>
</div>
<input type="hidden" id="var" name="var" value="customer">
<button type="submit">Signup</button>
</form>
</div>
<footer>
<p>© 2023 BookMyPlate. All rights reserved.</p>
</footer>
</body>
</html>