[32b2c5]: / templates / userreg.html

Download this file

21 lines (20 with data), 694 Bytes

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