-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 1.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/form/style.css">
<title>Document</title>
</head>
<body>
<div>
<img src="https://images.unsplash.com/photo-1668625597153-bbce4d21ebec?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D" alt="" class="right-side-pic">
</div>
<div class="about-text">
<h2>This is not a real online service! You know you need something like
this in your life to help you realize your deepest dreams. Sign up
<em>now</em> to get started.</h2>
<h3>You <span>know</span> you want to.</h3>
</div>
<form action="" method="get" class="customer-form">
<div class='form-row'>
<label for='full-name'>FIRST NAME</label>
<input id='full-name' name='full-name' type='text'/>
</div>
<div class='form-row'>
<label for='last-name'>LAST NAME</label>
<input id='last-name' name='last-name' type='text'/>
</div>
<div class='form-row'>
<label for='email'>EMAIL</label>
<input id='email' name='email' type='email'/>
</div>
<div class='form-row'>
<label for='phone-number'>PHONE NUMBER</label>
<input id='phone-number' name='phone-number' type='number'/>
</div>
<div class='form-row'>
<label for='password'>PASSWORD</label>
<input id='password' name='password' type='password'/>
</div>
<div class='form-row'>
<label for='confirm-password'>CONFIRM PASSWORD</label>
<input id='confirm-password' name='password' type='password'/>
</div>
</form>
<button class="btn">Create Account</button>
<p class="footer">Already have an account? <a href="">Log in</a></p>
</body>
</html>