-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (80 loc) · 3.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@200&family=Zhi+Mang+Xing&display=swap"
rel="stylesheet">
<link rel="shortcut icon" href="image/logo.png" type="image/x-icon">
<title>Sign-Up-Form</title>
<link rel="stylesheet" href="normalize.css">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<div class="main">
<div class="left">
<div class="sider">
<div class="logo"> </div>
<div class="logo-title">
<div class="title-top"> BLUE</div>
<div class="title-down">PERIOD</div>
</div>
</div>
</div>
<div class="right">
<div class="right-wrapper">
<div class="info">
This is not a real online service! <br>
If you dosen't talent for doing stuff. You can always use hard work as a replacement. You know you need something like this in your life to help you realize your deepest dreams.
You know you want to.
</div>
<form action="" method="post">
<div class="content">
<div class="form-info">Let's Join the Club</div>
<div class="form">
<div class="se1">
<label for="fname">- FIRST NAME <br>
<input type="text" id="fname" name="first name" required>
</label>
<label for="lname">- LAST NAME <br>
<input type="text" id="lname" name="last name" required>
</label>
</div>
<div class="se2">
<label for="email">- EMAIL <br>
<input type="email" id="email" name="email" required >
<div id="errormail" class="error"> </div>
</label>
<label for="pnumber">- PHONE NUMBER <br>
<input type="tel" id="pnumber" name="phone number" pattern='[0-9]{10}'
maxlength="10" required>
<div id="errornum" class="error"> </div>
</label>
</div>
<div class="se3">
<label for="password">- PASSWORD <br>
<input type="password" id="password" name="password" pattern='(?=.*[a-z])(?=.*[A-Z]).{8,}' required >
<div id="error1" class="error"></div>
</label>
<label for="cpassword">- CONFIRM PASSWORD <br>
<input type="password" id="cpassword" name="confirm password" pattern='(?=.*[a-z])(?=.*[A-Z]).{8,}' required >
<div id="error2" class="error"></div>
</label>
</div>
</div>
</div>
<button class="join"> Create Account </button>
</form>
<div class="log">
Already have an account?
<a href="index.html"><button class="login"> Log in </button></a>
</div>
</div>
</div>
</div>
</body>
</html>