-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (73 loc) · 3.5 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
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Free Air Sign Up Form</title>
<link rel="stylesheet" href="style.css">
<script src="javascript.js" defer></script>
</head>
<body>
<div class="sidebar">
<div class="logo-container">
<div class="text-background">
<div class="logo-image"><img src="Images/logo.png" alt="~Free Air~'s logo a blue coloured outline of a bird with a majestic tail taking flight" height="128px" width="123.2px"></div>
<div class="logo-name-container">
<div class="logo-name">~Free</div>
<div class="logo-name name-bottom"> Air~</div>
</div>
</div>
</div>
<div class="credit-container">
<div class="photo-credit">Photo by <a href="https://www.instagram.com/darius.krs/">Darius Krause</a> on <a href="https://www.pexels.com/">Pexels</a></div>
</div>
</div>
<div class="main-container">
<div class="intro">
<p>Well this may not be a real online service but we can guarantee express - dare we say instant? - delivery of our product as you sign up and its completely free! So sign up <em>now</em>!</p>
<p>You <em> know</em> you want to</p>
</div>
<form action="" method="POST">
<div class="form-background">
<h1>Let's do this!</h1>
<div class="required-notice">* marks all required fields</div>
<ul>
<li>
<div>
<label for="first-name">FIRST NAME *</label>
<input type="text" id="first-name" name="user-first-name">
</div>
<div>
<label for="last-name">LAST NAME *</label>
<input type="text" id="last-name" name="user-last-name">
</div>
</li>
<li>
<div>
<label for="email">EMAIL *</label>
<input type="email" id="email" name="email">
</div>
<div>
<label for="phone">PHONE NUMBER</label>
<input type="tel" id="phone" name="phone" pattern="(^(\+)?[0-9 ]+$)">
</div>
</li>
<li>
<div>
<label for="pwd">PASSWORD *</label>
<input type="password" id="pwd" name="pwd">
<span></span>
</div>
<div>
<label for="pwd-confirm">CONFIRM PASSWORD *</label>
<input type="password" id="pwd-confirm" name="pwd-confirm">
<!-- inquire about password validation for accessibility -->
</div>
</li>
</ul>
</div>
<button>Create Account</button>
</form>
<div class="log-in-link">Already have an account? <a href="">Log in</a></div>
</div>
</body>
</html>