-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (73 loc) · 3.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign-up Form</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="cssReset/normalize.css">
<script src="script.js" defer></script>
</head>
<body>
<!-- lOGO IMAGE FOOTER -->
<div class="wrapper left">
<div class="left-side">
<div class="logocontainer">
<div class="logo"><img src="images/odin-logo.png" alt="logo"></div>
<div id="logotext">ODIN</div>
</div>
<footer>
Photo by <a href="https://unsplash.com/@haliewestphoto" target="_blank">Halie West</a> on <a
href="https://unsplash.com/photos/green-leaf-plant-in-close-up-photography-25xggax4bSA"
target="_blank">Unsplash</a>
</footer>
</div>
</div>
<!-- Form Section -->
<div class="wrapper right">
<div class="motivatepara">
<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.</p>
<p>Sign-up now to get started!</p>
<p>You know you want to.</p>
</div>
<form id="myform">
<h3>Let's do this!</h3>
<div class="flexwrapper">
<div class="left-form">
<div>
<label for="firstName">FIRST NAME</label>
<input type="text" id="firstName" name="firstName" required autocomplete="given-name">
</div>
<div>
<label for="email">EMAIL</label>
<input type="email" id="email" name="email" required autocomplete="email">
</div>
<div>
<label for="pass1">PASSWORD</label>
<input type="password" id="pass1" name="password" class="error" required autocomplete="new-password">
</div>
</div>
<div class="right-form">
<div>
<label for="lastName">LAST NAME</label>
<input type="text" id="lastName" name="lastName" required autocomplete="family-name">
</div>
<div>
<label for="telephone">PHONE NUMBER</label>
<input type="tel" id="telephone" name="telephone" required autocomplete="tel">
</div>
<div>
<label for="pass2">CONFIRM PASSWORD</label>
<input type="password" id="pass2" name="password" class="error" required autocomplete="new-password">
</div>
</div>
</div>
</form>
<div class="account">
<button type="submit" form="myform">Create Account</button>
<div class="user">Already have an account? <a href="#">Log in</a></div>
</div>
</div>
</body>
</html>