-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (73 loc) · 3.87 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
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<section id="left_side">
<img src="./images/cheese.jpg" alt="A table with many types of cheeses.">
<div>
<img class="logo" src="./images/cheese_logo.png" alt="A logo of a slice of cheese.">
Cheese Inc.
</div>
<div>
<p>Photo by <a href=https://unsplash.com/@ferhadd rel="noopener noreferrer">Farhad Ibrahimzade</a> on
<a href=https://unsplash.com/photos/a-wooden-cutting-board-topped-with-cheese-and-grapes-UQ50GwZLwX8 rel="noopener noreferrer">Unsplash</a></p>
</div>
</section>
<section id="main">
<div>
<p>
We're thrilled you're interested in joining our community of cheese enthusiasts.
At Cheese Inc., we believe in celebrating <em>exceptional flavors</em> and <em>quality craftsmanship</em>.
By signing up, you'll gain access to exclusive offers, the latest cheese news, and much more.
Let's make every moment a little cheesier together.</p>
<p>Sign up now to get started.</p>
</div>
<div>
<p id="form-call-text">Let's do this!</p>
<p id="required-notice">All fields are required and thus followed by
<strong><span aria-label="required">*</span></strong>
</p>
<form id="form">
<div>
<label for="first-name" aria-label="first name">
<span>First name</span> <strong><span aria-label="required">*</span></strong>
<input type="text" id="first-name" name="first-name" maxlength="256" required />
</label>
<label for="last-name" aria-label="last name">
<span>Last name</span> <strong><span aria-label="required">*</span></strong>
<input type="text" id="last-name" name="last-name" maxlength="256" required />
</label>
<label for="email" aria-label="email">
<span>Email</span> <strong><span aria-label="required">*</span></strong>
<input type="email" id="email" name="email" maxlength="254" required />
</label>
<label for="phone" aria-label="phone">
<span>Phone number</span> <strong><span aria-label="required">*</span></strong>
<p>Must have between 10 and 11 digits. No letters or symbols.</p>
<input type="tel" id="phone" name="phone" pattern="[0-9]{10,11}" minlength="10" maxlength="11" required />
</label>
<label for="password" aria-label="password">
<span>Password</span> <strong><span aria-label="required">*</span></strong>
<p>Must have at least 8 characters.</p>
<input type="password" id="password" name="password" minlength="8" maxlength="128" required />
</label>
<label for="confirm-password" aria-label="confirm password">
<span>Confirm password</span> <strong><span aria-label="required">*</span></strong>
<p>Must have at least 8 characters.</p>
<input type="password" id="confirm-password" name="confirm-password" minlength="8" maxlength="128" required />
</label>
</div>
</form>
</div>
<div>
<button type="submit" form="form">Create account</button>
<p>Already have an account? <a href="">Log in</a>.</p>
</div>
</section>
</body>
</html>