-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (65 loc) · 3.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Marcellus&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<title>Sign Up Page</title>
</head>
<body>
<div class="title_area">
<div class="title_area_hero">
<img id="title_area_leftBanner" src="siteFiles/odin-lined.png" alt="the odin project logo">
<h1 class="title_area_title">Hikers Worldwide</h1>
</div>
<img id="title_area_backgroundImg" src="siteFiles/mountainByRyanKlaus.jpg" alt="pretty mountain picture">
<p class="title_area_photoCredit">Photo by <a href="https://unsplash.com/@ryankphoto?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">Ryan Klaus</a> on <a href="https://unsplash.com/photos/a-snow-covered-mountain-with-trees-in-the-foreground--xdYKP0g_Pg?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">Unsplash</a>
</p>
</div>
<div class="form_area">
<div class="form_area_text">
<h2>This is not a real online service! Learn from the best of the outdoors. Climb mountains! Sign up <em>now</em> to get started.</h2>
<h2>You know you want to. . .</h2>
</div>
<form id="signUp" action="" method="get">
<label for="form">Let's do this!</label>
<div class="form signUp_names">
<div class="form_row_item">
<label for="first_name">*FIRST NAME:</label>
<input id="signUp" name="first_name" type="text" required>
</div>
<div class="form_row_item">
<label for="last_name">LAST NAME:</label>
<input type="text" id="signUp" name="last_name">
</div>
</div>
<div class="form signUp_contact">
<div class="form_row_item">
<label for="email">*EMAIL:</label>
<input type="email" id="signUp" name="email" required>
</div>
<div class="form_row_item">
<label for="phone">PHONE NUMBER:</label>
<input type="tel" id="signUp" name="phone">
</div>
</div>
<div class="form signUp_password">
<div class="form_row_item">
<label for="set_pass">*PASSWORD:</label>
<input type="password" id="signUp" name="set_pass" pattern="^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)[a-zA-Z\d]{8,}$" required>
</div>
<div class="form_row_item">
<label for="confirm_pass">*CONFIRM PASSWORD:</label>
<input type="password" id="signUp" name="confirm_pass" pattern="^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)[a-zA-Z\d]{8,}$" required>
</div>
</div>
<div class="password_info">Minimum 8 characters - 1 Uppercase, 1 Lowercase, 1 Number</div>
<button type="submit" id="signUp" name="create_account">Create Account</button>
</form>
<div class="form_area_signIn">Already have an account? <a href="">Log in</a></div>
</div>
</body>
</html>