-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (76 loc) · 2.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sign up Form</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<aside class="sign-up-aside">
<div class="logo-container">
<img src="./assets/odin-lined.png" class="logo" />
<h1>Odin</h1>
</div>
<p class="image-credit">
Photo by
<a
href="https://unsplash.com/es/@haliewestphoto?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
target="_blank"
>Halie West</a
>
on
<a
href="https://unsplash.com/photos/25xggax4bSA?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText"
target="_blank"
>Unsplash</a
>
</p>
</aside>
<main class="sign-up-main">
<form id="sign-up-form">
<h2 class="form-heading">Let's do this!</h2>
<div class="grid-container">
<div class="form-row">
<label for="first-name">first name</label>
<input type="text" id="first-name" name="first-name" required />
</div>
<div class="form-row">
<label for="last-name">last name</label>
<input type="text" id="last-name" name="last-name" required />
</div>
<div class="form-row">
<label for="email">email</label>
<input type="email" id="email" name="email" required />
</div>
<div class="form-row">
<label for="phone-number">phone number</label>
<input type="tel" id="phone-number" name="phone-number" />
</div>
<div class="form-row">
<label for="password">password</label>
<input type="password" id="password" name="password" required />
<p class="error-message">* Passwords do not match</p>
</div>
<div class="form-row">
<label for="confirm-password">confirm password</label>
<input
type="password"
id="confirm-password"
name="confirm-password"
required
/>
</div>
</div>
</form>
<button class="primary-btn" form="sign-up-form" type="submit">
Create Account
</button>
<p>Already have an account? <a href="#" class="form-link">Log in</a></p>
</main>
</div>
</body>
<script src="./app.js"></script>
</html>