Spaces:
Sleeping
Sleeping
Create signup.html
Browse files- templates/signup.html +27 -0
templates/signup.html
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
6 |
+
<title>Sign Up</title>
|
7 |
+
</head>
|
8 |
+
<body>
|
9 |
+
<h1>Sign Up Page</h1>
|
10 |
+
<form method="post">
|
11 |
+
<label for="name">Name:</label><br>
|
12 |
+
<input type="text" id="name" name="name" required><br><br>
|
13 |
+
|
14 |
+
<label for="phone">Phone:</label><br>
|
15 |
+
<input type="tel" id="phone" name="phone" required><br><br>
|
16 |
+
|
17 |
+
<label for="email">Email:</label><br>
|
18 |
+
<input type="email" id="email" name="email" required><br><br>
|
19 |
+
|
20 |
+
<label for="password">Password:</label><br>
|
21 |
+
<input type="password" id="password" name="password" required><br><br>
|
22 |
+
|
23 |
+
<button type="submit">Sign Up</button><br><br>
|
24 |
+
<a href="/login">Already have an account? Login here</a>
|
25 |
+
</form>
|
26 |
+
</body>
|
27 |
+
</html>
|