|
a |
|
b/templates/userreg.html |
|
|
1 |
<!DOCTYPE html> |
|
|
2 |
<html> |
|
|
3 |
<head> |
|
|
4 |
<title>User Registration</title> |
|
|
5 |
</head> |
|
|
6 |
<body> |
|
|
7 |
<h1>User Registration</h1> |
|
|
8 |
<form method="post" action="#"> |
|
|
9 |
<label for="name">Name:</label> |
|
|
10 |
<input type="text" id="name" name="name" required><br><br> |
|
|
11 |
<label for="mobile">Mobile:</label> |
|
|
12 |
<input type="tel" id="mobile" name="mobile" required><br><br> |
|
|
13 |
<label for="email">Email:</label> |
|
|
14 |
<input type="email" id="email" name="email" required><br><br> |
|
|
15 |
<label for="password">Password:</label> |
|
|
16 |
<input type="password" id="password" name="password" required><br><br> |
|
|
17 |
<input type="submit" value="Register"> |
|
|
18 |
</form> |
|
|
19 |
</body> |
|
|
20 |
</html> |