-
Notifications
You must be signed in to change notification settings - Fork 16
/
index.html
70 lines (70 loc) · 1.82 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Title of Page</title>
</head>
<body>
<h1>Registry Form</h1>
<ul>
<li>Home</li>
<li>About this site</li>
<li>Registry</li>
<li>Contact</li>
<li>Copyright</li>
</ul>
<form>
<fieldset>
<legend>New account registry</legend>
<p>Your information is safe with us</p>
<div>
<label for="complete-name">Complete Name</label>
</div>
<div>
<input type="text" name="complete-name">
</div>
<div>
<label for="email">Email</label>
</div>
<div>
<input type="email" name="email">
</div>
<div>
<label for="password">Password</label>
</div>
<div>
<input type="password" name="password">
</div>
<div>
<label for="confirmpassword">Password confirmation</label>
</div>
<div>
<input type="password" name="confirmpassword">
</div>
<div>
<p>Country</p>
</div>
<div>
<select>
<option value ="MX">
Mexico
</option>
<option value ="FR">
France
</option>
</select>
</div>
<div>
<label for="male">Masculine</label>
<input type="radio" id="male" name="sex">
</div>
<div>
<label for="female">Feminine</label>
<input type="radio" id = "female" name="sex">
</div>
<div>
<button type="button">Cancel</button>
<button type="submit">Submit</button>
</div>
</fieldset>
</form>