-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
92 lines (82 loc) · 2.56 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
<!-- Ignore this Comment -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sign Up</title>
<link href="./style.css" rel="stylesheet">
<script src="script.js" defer></script>
</head>
<body>
<div class="main">
<div class="left">
<div class="logo">
<img src="assets/logo.png" alt="">
<h1>SAMAR</h1>
</div>
</div>
<div class="right">
<div class="one">
<h3>This is not a real online service! You know you need something <br> like this in
your life to help you realize your deepest dreams. <br> Sign up <em>now</em> to
get
started<br><br>
You <em>know</em> you want to</h3>
</div>
<div class="two">
<h3>Let's do this!</h3>
<form action="" method="get" class="form-div">
<div class="form-divs">
<div class="input-divs">
<label for="first-name">FIRST NAME</label>
<input type="text" name="first-name" id="first-name" required>
</div>
<div class="input-divs">
<label for="last-name">LAST NAME</label>
<input type="text" name="last-name" id="last-name" required>
</div>
</div>
<div class="form-divs">
<div class="input-divs">
<label for="email">EMAIL</label>
<input type="email" name="mail" id="mail" minlength="8"
required>
<span class="error email-error" aria-live="polite"></span>
</div>
<div class="input-divs">
<label for="tel">PHONE NUMBER</label>
<input type="tel" name="tel" id="tel" pattern="^\d{10}"
placeholder="10 digit phone no." required
maxlength="10">
<span class="error tel-error" aria-live="polite"></span>
</div>
</div>
<div class="form-divs">
<div class="input-divs">
<label for="pass">PASSWORD</label>
<input type="password" name="pass" id="pass"
pattern="(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])\S{6,}"
required>
<span class="error pass-error" aria-live="polite"></span>
</div>
<div class="input-divs">
<label for="confirm-pass">CONFIRM PASSWORD</label>
<input type="password" name="confirm-pass" id="confirm-pass"
required>
<span class="error confirm-error" aria-live="polite"></span>
</div>
</div>
<input type="submit" name="" id="submit-form">
</form>
</div>
<div class="three">
<div class="submit">
<label for="submit-form">Create Account</label>
</div>
<h4>Already have an account? <a href="">Log in</a></h4>
</div>
</div>
</div>
</body>
</html>