-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistration.html
More file actions
37 lines (31 loc) · 777 Bytes
/
registration.html
File metadata and controls
37 lines (31 loc) · 777 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>register maamaa</title>
</head>
<body>
<h1>register</h1>
<form><label for="first">first name
</label>
<input id="first" type="text" name="first">
<label for="last">lastname</label>
<input id="last" type="text" name="last">
<div>
<label for="male" >male</label>
<input id="male" type="radio" name="gender" value="male">
<label for="female" >female</label>
<input id="female" type="radio" name="gender" value="female">
</div>
<label for="email">email</label>
<input id="email" type="email" name="email">
<label for="password" >password</label>
<input type="password" name="password" id="password" pattern=".{5,10}" required title="kuska">
<div>
<select>
<option></option>
</select>
</div>
<input type="submit">
</form>
</body>
</html>