-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (85 loc) · 2.97 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
83
84
85
<!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" />
</head>
<body>
<div class="container">
<div class="image-container">
<img src="./nature.jpg" alt="nature" />
<div class="logo">
<img src="./odin-lined.png" alt="odin" />
<span>ODIN</span>
</div>
<div class="img-description">
Photo taken by
<a href="https://unsplash.com/@eberhardgross">eberhard</a> on
<a href="https://unsplash.com/">unsplash</a>
</div>
</div>
<div class="form-container">
<div class="intro-text">
<p>
This is not a real online service! You know you need some thing like
this in your life to help you realize your deepest dreams.
<span class="new-line">
Sign up
<em>now</em> to get started.
</span>
</p>
<p>You know you want to.</p>
</div>
<form id="form" action="">
<div class="form-box">
<span>Let's do this!</span>
<div class="form-controls">
<div class="form-group">
<label for="first_name">first name</label>
<input type="text" id="first_name" name="first_name" required />
</div>
<div class="form-group">
<label for="last_name">last name</label>
<input type="text" id="last_name" name="last_name" required />
</div>
<div class="form-group">
<label for="email">email</label>
<input type="email" id="email" name="email" required />
</div>
<div class="form-group">
<label for="phone_number">phone number</label>
<input
type="text"
id="phone_number"
name="phone_number"
required
/>
</div>
<div class="form-group">
<label for="password">password</label>
<input type="password" id="password" name="password" />
<span class="error-text">* passwords do not match</span>
</div>
<div class="form-group">
<label for="confirm_password">confirm password</label>
<input
type="password"
id="confirm_password"
name="confirm_password"
/>
</div>
</div>
</div>
<button id="submit-btn" type="submit">Create account</button>
<span class="login-text"
>Already have an account?
<a href="#" class="login-link">Log in</a></span
>
</form>
</div>
</div>
<script src="./script.js"></script>
</body>
</html>