-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (69 loc) · 3.05 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Sign-up Form</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="media.css">
</head>
<body>
<div class="container">
<div class="left-banner">
<img class="logo" src="img/nike-logo.png" alt="Nike Logo">
<p>Made by <a href="https://jmcampos.dev" target="_blank">jmcampos.dev</a></p>
</div>
<div class="main-container">
<div class="info-container">
<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.
Sign up now to get started.
You know you want to.
</p>
</div>
<div class="form-container">
<h1>Let's do this!</h1>
<form action="">
<div class="form-row">
<div class="form-input">
<label for="first-name">FIRST NAME *</label>
<input type="text" id="first-name" placeholder="John" required>
</div>
<div class="form-input">
<label for="last-name">LAST NAME *</label>
<input type="text" id="last-name" placeholder="John" required>
</div>
</div>
<div class="form-row">
<div class="form-input">
<label for="email">EMAIL *</label>
<input type="email" id="email" placeholder="ej@company.com" required>
</div>
<div class="form-input">
<label for="phone-number">CONFIRM EMAIL *</label>
<input type="number" id="phone-number" placeholder="" required>
</div>
</div>
<div class="form-row">
<div class="form-input">
<label for="password">PASSWORD *</label>
<input type="password" id="password" placeholder="" required>
</div>
<div class="form-input">
<label for="confirm-password">CONFIRM PASSWORD *</label>
<input type="password" id="confirm-password" placeholder="" required>
</div>
</div>
<input type="submit" value="Sign up">
</form>
</div>
<div class="login-container">
<p>Already have an account? <a href="#">Log in</a></p>
</div>
</div>
</div>
</body>
</html>