-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign-up-form.html
71 lines (69 loc) · 3.49 KB
/
sign-up-form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<script src="webApp.js"></script>
</head>
<body>
<div class="wrapper">
<div class="left-container">
<div class="logo-container">
<img src="odin-lined.png" alt="" srcset="" width="80" height="100">
<p>ODIN</p>
</div>
<div class="credit-photo">
<p>Photo by <span><a href="" style="color: white; text-decoration: underline;">Halie</a> on <a href="https://unsplash.com/photos/25xggax4bSA" style="color: #ffffff; text-decoration: underline;">Unsplash.com</a></span></p>
</div>
</div>
<div class="right-container">
<div class="text-item">
<p>This is not a real online service! You know you need something.<br>like this in your life to help you realize your deeepest dreams. <br> Sign up <em>now</em> to get started<br><br>You <em>know</em> you want to</p>
</div>
<form action="" id="myForm" >
<div class="text-seconditem">
<p>Let's do this!</p>
</div>
<div class="input-wrapper">
<div class="input-left">
<div>
<label for="firstname">First Name</label>
<input type="text" name="firstname" id="firstname" size="30" required>
</div>
<div>
<label for="myEmail">Email</label>
<input type="email" name="email" id="myEmail" size="30" required>
</div>
<div>
<label for="myPassword">Password</label>
<input type="password" name="password" id="myPassword" size="30" required>
</div>
</div>
<div class="input-right">
<div>
<label for="lastname">Last Name</label>
<input type="text" name="" id="lastname" size="30" required>
</div>
<div>
<label for="PhoneNumber">Phone Number</label>
<input type="number" class="error" id="PhoneNumber" minlength="8" maxlength="15" style="width:215px" required>
</div>
<div>
<label for="password">Confirm Password</label>
<input type="password" name="" id="password" size="30" required>
</div>
</div>
</div>
</form>
<div class="login-link">
<div class="bottom">
<button id="submitBtn">Create Account</button>
<p>Already Have an Account? <span><a href="">Login</a></span></p>
</div>
</div>
</div>
</div>
</body>
</html>