-
Notifications
You must be signed in to change notification settings - Fork 11
/
signup1.html
70 lines (69 loc) Β· 2.19 KB
/
signup1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Signup</title>
<link rel="stylesheet" href="style1.css" />
</head>
<body>
<header>
<h1>Signup for E-Learn</h1>
</header>
<!-- <nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="login1.html">Login</a></li>
<li><a href="signup1.html">Signup</a></li>
</ul>
</nav> -->
<main class="main">
<form id="signupForm">
<div class="form-group">
<!-- <label for="username">Username</label> -->
<input
type="text"
id="username"
placeholder="Enter userName"
required
/>
</div>
<div class="form-group">
<!-- <label for="email">Email</label> -->
<input type="email" id="email" placeholder="Enter Email" required />
</div>
<div class="form-group">
<!-- <label for="email">Email</label> -->
<input
type="text"
id="phone"
placeholder="Enter Phone No."
pattern="[+]\d{1,3}\s?\d{8,14}"
title="Please enter a country code + 10-digit phone number "
required
/>
</div>
<div class="form-group">
<!-- <label for="password">Password</label> -->
<input
type="password"
id="password"
placeholder="Enter Password"
pattern="^(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}$"
title="Password must contain at least 8 characters, including one uppercase letter, one lowercase letter, and one digit."
required
/>
</div>
<button type="submit">SignUp</button>
</form>
<p>Already have an account? <a href="login1.html">Login Now</a></p>
<p>Please login after signup</p>
</main>
<footer class="footer">
© copyright @ 2023 by <span>Mr. Gyan Pratap Sing (GPS)</span> | all
rights reserved!
</footer>
<script src="script1.js"></script>
<!-- <script src="script1.js"></script> -->
</body>
</html>