-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
103 lines (102 loc) · 3.38 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Dummy-Form!</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<main>
<section class="left-section">
<div class="odin-banner">
<img src="assets/odin-lined.png" alt="odin-logo" width="45px" />
<h1><a href="https://www.theodinproject.com/">ODIN-TEAM</a></h1>
</div>
<div class="image-wrapper">
<img
src="./assets/signUp-green.svg"
width="550px"
alt="form-image-white"
/>
</div>
<div class="footer">
copyright © 2024 | <a href="https://github.com/codedstrings"> codedstrings <i class="fa fa-github" style="font-size: 15px"></i
></a>
</div>
</section>
<section class="right-section">
<div class="hero-text">Let's get started...</div>
<div class="form-wrapper">
<form action="#" method="post">
<div class="all-input-wrapper">
<div class="input-label">
<label for="first-name">First Name</label>
<input
required
type="text"
class="input"
id="first-name"
name="first-name"
placeholder=""
/>
</div>
<div class="input-label">
<label for="last-name">Last Name</label>
<input
type="text"
class="input"
id="last-name"
name="last-name"
placeholder=""
/>
</div>
<div class="input-label">
<label for="email">Email</label>
<input
required
type="email"
class="input"
id="email"
name="email"
placeholder=""
/>
</div>
<div class="input-label">
<label for="phone">Phone No.</label>
<input
required
type="tel"
class="input"
name="phone"
placeholder=""
/>
</div>
<div class="input-label">
<label for="password">Create password</label>
<input required type="password" class="input" name="password" />
</div>
<div class="input-label">
<label for="conf-password">Confirm password</label>
<input
required
type="password"
class="input"
name="conf-password"
/>
</div>
</div>
<button type="submit">Create Account</button>
</form>
</div>
<div class="login-wrap">
Already have an account..? <a href="#" class="login">LOG IN</a>
</div>
</section>
</main>
</body>
</html>