-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (83 loc) · 3.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Odin Form Project - CWB ADS 2022">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Odin Form Project</title>
<link rel="icon" type="image/x-icon" href="./imgs/favicon.ico">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="header">
<div class="logocwb">
<img src="./imgs/cwbads.png" alt="logo">
<div class="logo">CWBADS22</div>
</div>
<nav>
<ul>
<li><a href="https://www.theodinproject.com/">Home</a></li>
<li><a href="https://replit.com/@cwbads22">Replit</a></li>
<li><a href="https://github.com/cwbads22">Github</a></li>
<li><a href="https://www.linkedin.com/in/luciano2022/">Hire!</a></li>
</ul>
</nav>
</div>
<div class="container">
<div class="left">
<div class="odin">
<img src="./imgs/odin-lined.png" alt="Odin">
</div>
<div class="odintxt">
<h2>Odin Project</h2>
</div>
</div>
<div class="formula">
<div class="toptext">
<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 <em>now</em> to get started.</p>
<p>You <em>know</em> you want to.</p>
</div>
<div class="whitebox">
<form>
<div class="formrow">
<div class="form-element">
<label>First Name</label>
<input type="text" required>
</div>
<div class="form-element">
<label>Last Name</label>
<input type="text" id="lastname" required>
</div>
</div>
<div class="formrow">
<div class="form-element">
<label>Email</label>
<input type="email" placeholder="[email protected]" required>
</div>
<div class="form-element">
<label>Phone Number</label>
<input type="tel" id="phone" name="phone" placeholder="xx-xxxxx-xxxx" pattern="[0-9]{2}-[0-9]{5}-[0-9]{4}"
required>
</div>
</div>
<div class="formrow">
<div class="form-element">
<label>Password</label>
<input type="password" id="password" required>
<p id="validation-error"></p>
</div>
<div class="form-element">
<label>Confirm Password</label>
<input type="password" id="confirm_password" required>
</div>
</div>
</div>
<button type="submit" class="create-account">Create Account</button>
</form>
<p id="account">Already have an account? <a href="#" class="login">Log in</a></p>
</div>
</div>
</div>
</body>
</html>