-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (75 loc) · 3.4 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
<!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="css/style.css">
</head>
<body>
<header class="header">
<div class="header-logo">
<a href="./"><img src="images/logo.png" alt="logo"></a>
<span class="logo-text">Welcome</span>
</div>
<div class="header-footer">
Photo by <a
href="https://unsplash.com/@thommilkovic?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Thom
Milkovic</a> on <a
href="https://unsplash.com/?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a>
</div>
</header>
<main class="main">
<div class="main-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.<br /> Sign up <em>now</em> to get started.</p>
<p>You <em>know</em> you want to.</p>
</div>
<div class="sign-up-form">
<form id="signForm" action="#">
<p class="form-header">Let's do this</p>
<div class="form-wrapper">
<div class="form-row">
<label for="firstName">First Name</label>
<input type="text" id="firstName" name="firstName" required>
</div>
<div class="form-row">
<label for="lastName">Last Name</label>
<input type="text" id="lastName" name="lastName" required>
</div>
<div class="form-row">
<label for="email">E-mail</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-row">
<label for="phoneNumber">Phone Number</label>
<input type="tel" name="phoneNumber" id="phoneNumber" required>
</div>
<div class="form-row pass">
<label for="pass">Password</label>
<input class="error" type="password" name="pass" id="pass" required>
</div>
<div class="form-row">
<label for="confirmPass">Confirm Password</label>
<input class="error" type="password" name="confirmPass" id="confirmPass" required>
</div>
</div>
</form>
</div>
<div class="button-area">
<button id="createAccBtn" type="submit" form="signForm">Create Account</button>
<p>Already have an account? <a href="#">Log in</a></p>
</div>
<div class="container-footer">
<p>Copyright ©
<script>document.write(new Date().getFullYear())</script> <a href="https://github.com/andishaa"
target="_blank">andisha</a>
</p>
<p>This project is a part of <a href="https://www.theodinproject.com/" target="_blank">The Odin Project</a>
curriculum</p>
</div>
</main>
<script src="js/script.js"></script>
</body>
</html>