-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (65 loc) · 2.23 KB
/
index.html
File metadata and controls
72 lines (65 loc) · 2.23 KB
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" />
<link rel="stylesheet" href="styles.css" />
<title>Document</title>
</head>
<body>
<!--the main div for both-->
<div class="main">
<!--the left-side of the div-->
<div class="left-side">
<div class="odin-logo">
<img src="odin-lined.png" alt="odin_logo" />
<p>ODIN</p>
</div>
</div>
<!--the right-side of the div and the forms-->
<div class="right-side">
<div class="right-side-content">
<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.</p>
<p>You know you want to.</p>
</div>
<div class="forms-inner">
<p>Let's do this!</p>
<!--forms session-->
<form action="#">
<div class="content">
<div class="input-box">
<label for="">First Name</label>
<input type="text" class="focu" required />
</div>
<div class="input-box">
<label for="">Last Name</label>
<input type="text" class="focu" required />
</div>
<div class="input-box">
<label for="">E-mail</label>
<input type="email" class="focu" required />
</div>
<div class="input-box">
<label for="">Phone</label>
<input type="number" class="focu" />
</div>
<div class="input-box">
<label for="">Password</label>
<input type="text" class="focu" required />
</div>
<div class="input-box">
<label for="">Confirmed Password</label>
<input type="text" class="focu" required />
</div>
</div>
</form>
</div>
<div class="button-div">
<button>Create Account</button>
<p>Already have an account? <a href="#">Log in</a></p>
</div>
</div>
</div>
</body>
</html>