-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (56 loc) · 2.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Sign-up</title>
</head>
<body>
<div class="content">
<div class="picture">
<div class="logo">
<img class="toplogo" src="./—Pngtree—green sprout leaf logo design_7431531.png" alt="logo">
</div>
</div>
<div class="right">
<div class="dummy-text left">
<p>This is not a real online service! Lorem ipsum dolor sit amet consectetur, adipisicing elit. Necessitatibus, commodi!</p>
<p>Sign up <em>now</em> to get started.</p>
<p class="remote-text">You <em>know</em> you want to.</p>
</div>
<form action="#">
<div class="form left">
<p class="form-title">Let's do this!</p>
<div class="input">
<label for="first-name">First Name</label>
<input type="text" name="first-name" id="first-name" required>
</div>
<div class="input">
<label for="last-name">Last Name</label>
<input type="text" name="last-name" id="last-name">
</div>
<div class="input">
<label for="email">Email</label>
<input type="email" name="email" id="email" required>
</div>
<div class="input">
<label for="phone-number">Phone number</label>
<input type="text" name="phone-number" id="phone-number" required>
</div>
<div class="input">
<label for="password">Password</label>
<input type="password" name="password" id="password" required>
</div>
<div class="input">
<label for="confirm-password">Confirm Password</label>
<input type="password" name="confirm-password" id="confirm-password" required>
</div>
</div>
<div class="left button"><button type="submit">Create Account</button></div>
</form>
<div class="log-in left"><p>Already have an account?</p><a href="#">Log in</a></div>
</div>
</div>
</body>
</html>