-
Notifications
You must be signed in to change notification settings - Fork 0
/
Registration Page ITR.html
131 lines (126 loc) · 3.81 KB
/
Registration Page ITR.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<head>
<title>Registration page</title>
<link rel="stylesheet" href="upgrade.css">
</head>
<body>
<header>
<img src="logo.jpg" alt="logo" width="200px" height="50px">
<nav class="navbar">
<a class="feedback" href="#" style="color: aliceblue;">Feedback</a>
<a class="eacess" href="#" style="color: aliceblue;">E-acessibility</a>
<a class="contact" href="#" style="color: aliceblue;">Contact us</a>
<a class="about" href="#" style="color: aliceblue;">About us</a>
<a class="home" href="Home Page 2.html" style="color: aliceblue;">Home</a>
</nav>
</header>
<table class="regtab">
<th colspan="3">
<h1>New User Registration</h1>
</th>
<tr>
<td>Name</td>
<td>
:
</td>
<td>
<label for="name">
<input id="name" type="text" placeholder="Enter name" required>
</label>
</td>
</tr>
<tr>
<td>Age</td>
<td>
:
</td>
<td>
<label for="age">
<input id="age" type="text" placeholder="Enter age" required>
</label>
</td>
</tr>
<tr>
<td>Gender</td>
<td>
:
</td>
<td>
<label for="gender-homme">
<input id="gender-homme" type="radio" name="gender" value="male" required> Male
</label>
<label for="gender-homme">
<input id="gender-femme" type="radio" name="gender" value="female" required> Female
</label>
</td>
</tr>
<tr>
<td>Profession</td>
<td>
:
</td>
<td>
<label for="profession">
<input id="profession" type="text" placeholder="Enter profession" required>
</label>
</td>
</tr>
<tr>
<td>Address</td>
<td>
:
</td>
<td>
<label for="address">
<textarea id="address" type="text" placeholder="Enter address" required></textarea>
</label>
</td>
</tr>
<td>State</td>
<td>
:
</td>
<td>
<select name="dropdown">
<option value="Kashmir">Kashmir</option>
<option value="Punjab" selected>Punjab</option>
<option value="Himachal">Himachal</option>
</select>
</td>
</tr>
<tr>
<td>Annual Income</td>
<td>
:
</td>
<td>
<label for="annual income">
<input id="annual income" type="text" placeholder="Enter annual income" required>
</label>
</td>
</tr>
<tr>
<td>Photo</td>
<td>
:
</td>
<td>
<label for="photo">
<input id="photo" type="file" accept="image/jpeg,image/png" required>
</label>
</td>
</tr>
<tr>
<tr>
<td colspan="3">
<label for="submit">
<input id="submit" type="submit">
</label>
<label for="reset">
<input id="reset" type="reset">
</label>
</td>
</tr>
</table>
</body>
</html>