-
Notifications
You must be signed in to change notification settings - Fork 0
/
signup_using_jsp.html
44 lines (33 loc) · 1.55 KB
/
signup_using_jsp.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
<html lang="en">
<head>
<title>Registration Form</title>
</head>
<body bgcolor="palered">
<h1>
Sign Up Now!
</h1>
<form action="signup_jsp.jsp" method="post">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required placeholder="Don't enter previous email"><br><br>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required placeholder="Enter the password"><br><br>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required placeholder="Don't exceed 10 characters"><br><br>
<label for="securityQuestion">Security Question:</label>
<select id="securityQuestion" name="securityQuestion" required>
<option value="" disabled selected>Select a Security Question</option>
<option value="q1">What is your favorite color?</option>
<option value="q2">In which city were you born?</option>
<!-- Add more options as needed -->
</select><br><br>
<label for="answer">Answer:</label>
<input type="text" id="answer" name="answer" required placeholder="Enter your answer.."><br><br>
<label for="contactNo">Contact No.:</label>
<input type="tel" id="contactNo" name="contactNo" required placeholder="Enter your contact no."><br><br><br>
<br>
<br>
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</form>
</body>
</html>