forked from harshbj/RCS-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_2.html
More file actions
57 lines (42 loc) · 1.37 KB
/
index_2.html
File metadata and controls
57 lines (42 loc) · 1.37 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<h2 style="text-align: center"> CUSTOMER OPENING </h2>
<form name="regForm" action="ClientServlet" method="post">
Customer Name:
<input type="text" name="name" title="Please enter your name" required/> <br>
Prefix:
<select name="prefix">
<option>-select-</option>
<option value="Mr">Mr.</option>
<option value="Mrs">Mrs.</option>
</select><br><br>
Gender:
<select name="gender">
<option>-select-</option>
<option value="Male">Male</option>
<option value="Female">Female</option>
<option value="Others">Others</option>
</select><br><br>
Telephone Number:
<input type="number" name="phone" title="Please enter valid 10 digit contact no." required/><br>
Occupation code:
<select name="occupationcode">
<option>-select-</option>
<option value="10">Teacher</option>
<option value="20">Doctor</option>
<option value="30">Engineer</option>
<option value="40">Business</option>
<option value="50">Housewife</option>
<option value="60">Others</option>
</select><br><br>
PAN number:
<input type="text" name="pan" maxlength="10" title="Please enter valid PAN number. E.g. AAAAA9999A" required/><br>
Date of birth: <input type="date" name="dob" required ><br>
<input type="submit" value="Submit"/>
</form>
</body>
</html>