-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
78 lines (65 loc) · 3.13 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="styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap" rel="stylesheet">
</head>
<body>
<!-- <h1>Hello</h1> -->
<div class="img">
<div class="img-description">
<p class="img-info">Photo by Wil Stewart</p>
<a href="https://unsplash.com/@wilstewart3?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Wil Stewart</a> on <a href="https://unsplash.com">Unsplash</a>
</div>
</div>
<div class="form">
<div class="form-info">
This is not a real online service! You know you need something. Sign up <em>now</em> to get started.
<br>
<br>
You <em>know</em> you want to.
</div>
<form action="">
<h1>Let's do this!</h1>
<div class="inputs">
<div class="first-name">
<label for="First Name" class="form-label">First Name:</label>
<input required type="text" class="form-input" id="first-name" placeholder="First Name">
</div>
<div class="last-name">
<label for="Last Name" class="form-label">Last Name:</label>
<input required type="text" class="form-input" id="last-name" placeholder="Last Name">
</div>
<div class="email">
<label for="email" class="form-label">Email:</label>
<input required type="email" class="form-input" id="email" placeholder="Email">
</div>
<div class="phone-number">
<label for="Phone Number" class="form-label">Phone Number:</label>
<input required type="text" class="form-input" id="phone" placeholder="Phone Number">
</div>
<div class="Password">
<label for="Password" class="form-label">Password:</label>
<input required type="text" class="form-input" id="password" placeholder="Password">
</div>
<div class="Confirm Password">
<label for="Confirm Password" class="form-label">Confirm Password:</label>
<input required type="text" class="form-input" id="confirm-password" placeholder="Confirm Password">
</div>
</div>
<div class="error"></div>
<div class="form-end">
<button class="create-acc">Create Account</button>
<p>Already have an account? <a href="" class="log-in">Log in</a></p>
</div>
</form>
</div>
<script src="script.js"></script>
</body>
</html>