-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (76 loc) · 3.3 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
80
81
82
<!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</title>
<link rel="stylesheet" href="./styles.css">
<script src="./script.js" defer></script>
</head>
<body>
<div class="wrapper">
<div class="left">
<div class="logo">
<img src="./images/odin-lined.png" alt="Odin Logo">
<p>ODIN</p>
</div>
<p class="credit">Photo by <a
href="https://unsplash.com/@dayso?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">DaYsO</a>
on
<a
href="https://unsplash.com/photos/GysN_Afm25A?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a>
</p>
</div>
<div class="right">
<div class="dummy-text">
<p>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.</span></p>
<p>You <em>know</em> you want to.</p>
</div>
<form action="#">
<div class="form-wrapper">
<h2>Let's do this!</h2>
<div class="form-row">
<label for="first-name">First Name <span>(*)</span></label>
<input type="text" name="first-name" id="first-name" required>
<span></span>
</div>
<div class="form-row">
<label for="last-name">Last Name</label>
<input type="text" name="last-name" id="last-name">
<span></span>
</div>
<div class="form-row">
<label for="email">Email<span>(*)</span></label>
<input type="email" name="email" id="email" required>
<span></span>
</div>
<div class="form-row">
<label for="phone">Phone Number</label>
<input type="tel" name="phone" id="phone" maxlength="12">
<span></span>
</div>
<div class="form-row">
<label for="password">Password<span>(*)</span></label>
<input type="password" name="password" id="password" required>
<span></span>
</div>
<div class="form-row">
<label for="cpassword">Confirm Password<span>(*)</span></label>
<input type="password" name="cpassword" id="cpassword" required>
<span></span>
<div class="error"></div>
</div>
<p>(*) - required</p>
</div>
<button type="submit">Create Account</button>
</form>
<div class="log-in">
<p>Already have an account? <a href="#">Log In</a></p>
</div>
</div>
</div>
</body>
</html>