-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (66 loc) · 2.95 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign up</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="outer_bod">
<img src="images/background.jpg" alt="cute girl withe headphones on" class="img1">
<img src="images/odin-lined.png" alt="The odin symbol" class="img2">
<div class="inside_img">The Odin Project</div>
<div class="form_side">
<div class="inner_form_box">
<div class="upper_para">This is not a real online service! you know you need something like this in life to help you realise your deepest dreams.Signup <em>now</em> to get started</div>
<div class="second_para">You <em>know</em> you want to</div>
<div class="form_box">
<form action=" " method="get">
<div class="without_button">
<h3>Let's do this!</h3>
<div class="personal_details">
<div id="f_name">
<label for="user_fname"> First Name</label>
<input type="text" id="user_fname" required>
</div>
<div id="l_name">
<label for="user_sname">Last Name</label>
<input type="text" id="user_sname">
</div>
</div>
<div class="secondary_details">
<div id="email">
<label for="user_email">Email</label>
<input type="email" id="user_email" required>
</div>
<div id="phoneno">
<label for="user_phoneno">Phone Number</label>
<input type="tel" id="user_phoneno">
</div>
</div>
<div class="passwords">
<div id="pass">
<label for="user_password"> Password</label>
<input type="password" id="user_password" title="*required feild" required>
<div class="generated"></div>
</div>
<div id="confirmpass">
<label for="user_conpass">Confirm Password</label>
<input type="password" id="user_conpass" title="*required feild" required>
</div>
</div>
</div>
<div class="button">
<button type="submit">Create Account</button>
</div>
</form>
</div>
<div class="last_para">
Already have an account? <a href="https://www.google.com/">Log in</a>
</div>
</div>
</div>
</div>
</body>
</html>