-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUserForm.html
More file actions
170 lines (146 loc) · 3.99 KB
/
UserForm.html
File metadata and controls
170 lines (146 loc) · 3.99 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
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<html>
<head>
<title>
REGISTRATION FORM
</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.header {
overflow: hidden;
background-color: #f1f1f1;
padding: 20px 10px;
}
.header a {
float: left;
color: black;
text-align: center;
padding: 12px;
text-decoration: none;
font-size: 18px;
line-height: 25px;
border-radius: 4px;
}
.header a.logo {
font-size: 25px;
font-weight: bold;
}
.header a:hover {
background-color: #ddd;
color: black;
}
.header a.active {
background-color: dodgerblue;
color: white;
}
.header-right {
float: right;
}
.footer {
overflow: hidden;
background-color: #f1f1f1;
padding: 20px 10px;
text-align: center;
}
@media screen and (max-width: 500px) {
.header a {
float: none;
display: block;
text-align: left;
}
float: none;
}
}
</style>
</head>
<body align="center">
<div class="header">
<a href="#default" class="logo">DEVIL NINJA</a>
<div class="header-right">
<a href="/html/index.html">Home</a>
<a href="/html/SignUP.html">Sign UP Form</a>
<a class="active" href="/html/UserForm.html">User Form</a>
<a href="/html/hello.html">Hello</a>
<a href="/html/form.html">Form</a>
<a href="/html/readme.md">Read Me</a>
</div>
</div>
<div style="background-color:rgb(0, 255, 128)">
User FORM <br>
</div>
<div style="background-color:rgb(133, 241, 133)">
<table border="0" align="center">
<form>
<tr>
<td><label>First Name </td><td><input type="text" name="first name" placeholder="fiest name" required></input></label></td>
</tr>
<tr>
<td><label>Password </td><td><input type="password" name="password" placeholder="password" pattern=".{.5,10}" required title="Your password must be between 5 to 10 character"></label></td>
</tr>
<tr>
<td><label>Gender</label></td>
<td><label>Male<input type="radio" name="Gender" value="Male"></label>
<label>Female<input type="radio" name="Gender" value="Female"></label></td>
</tr>
<tr>
<td><label>Address</td><td><input type="text" name="Address" placeholder="Address" required></label></td>
</tr>
<tr>
<td><label for="">D.O.B</label></label></td>
<td><select id="D.O.B" name="select">
<option>Jan</option>
<option>Feb</option>
<option>Mar</option>
<option>Apr</option>
</select>
<select id="D.O.B" name="select">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
</select>
<select id="D.O.B" name="select">
<option>1990</option>
<option>1991</option>
<option>1992</option>
<option>1993</option>
<option>1994</option>
</select>
</td>
<tr>
<td><label>Select Games</label></td>
<td><label>Hockey<input type="checkbox" name="Check"></label>
<label>Football<input type="checkbox" name="Check"></label>
<label>Cricket<input type="checkbox" name="Check"></label>
<label>Volleyball<input type="checkbox" name="Check"></label></td>
</tr>
<tr>
<td><label>Marital Status</label></td>
<td><label>Married <input type="checkbox" name="Check"></label>
<label>Unmarried <input type="checkbox" name="Check"></label></td>
</tr>
<tr>
<td></td>
<td> <input type="submit" name="Submit">
<input type="reset"></td>
</tr>
<tr>
<td></td>
<td><label><input type="checkbox" name="check">I accept the agreement</label></td>
</tr>
</form>
</table>
</div>
<div class="footer">
<p>
Copyright © 2021. All rights reserved
</p>
</div>
</body>
</html>