-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstep2.html
82 lines (63 loc) · 2.51 KB
/
step2.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register Page</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/second.css">
</head>
<body>
<div class="wrapper">
<h1>Register Page</h1>
<ul>
<li>
<a href="index.html">
<div class="circle">1</div>
<span>Account</span>
</a>
</li>
<li class="current">
<a href="step2.html">
<div class="circle">2</div>
<span>Details</span>
</a>
</li>
<li>
<a href="step3.html">
<div class="circle">3</div>
<span>Confirmation</span>
</a>
</li>
</ul>
<main>
<div class="left-col">
<h2>Details</h2>
<label for="loc">Location</label>
<select name="loc" id="loc">
<option value="US">United States</option>
<option value="UK">United Kingdom</option>
<option value="ID">Indonesia</option>
<option value="MY">Malaysia</option>
<option value="SG">Singapore</option>
</select>
<label>Gender</label>
<input type="radio" id="male" name="gender" checked>
<label for="male" class="right-label">Male</label>
<input type="radio" id="female" name="gender">
<label for="female" class="right-label">Female</label>
<label for="bio" class="mt-extra">Biography</label>
<textarea name="bio" id="bio" class="fix-height"></textarea>
<a href="step3.html" class="cta">Next</a>
</div>
<div class="right-col">
<p><strong>Note: </strong>Lorem ipsum dolor sit amet consectetur adipisicing elit. Facere quidem animi
saepe provident itaque fugiat odit fuga temporibus perspiciatis at. Dolorem repudiandae delectus
voluptatem esse.</p>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Officia similique explicabo omnis delectus
voluptatum tenetur illo aspernatur maiores, rerum neque.</p>
</div>
</main>
</div>
</body>
</html>