-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (52 loc) · 2.09 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
<!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 class="current">
<a href="index.html">
<div class="circle">1</div>
<span>Account</span>
</a>
</li>
<li>
<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>Account</h2>
<label for="fname">First Name</label>
<input type="text" id="fname" class="error-field">
<p class="error">Sorry this field is required!</p>
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lname">
<label for="email">Email</label>
<input type="text" id="email" name="email">
<a href="step2.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>