-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsign-up.html
More file actions
42 lines (42 loc) · 1.52 KB
/
sign-up.html
File metadata and controls
42 lines (42 loc) · 1.52 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
<!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="stylesheet" href="sign-up.css">
<script src="sign-up.js"></script>
<title>Sign-up</title>
</head>
<body>
<h1 id="heading">The Mega Cart</h1>
<div id="form">
<div id="ele">
<label for="username">Enter username:</label>
<input type="text" id="username" name="username" minlength="6" maxlength="10" required>
<p id="use"></p>
</div>
<div id="ele">
<label for="email">Enter Email Id:</label>
<input type="email" id="email" name="email" required>
<p id="ema"></p>
</div>
<div id="ele">
<label for="number">Enter Mobile No:</label>
<input type="number" id="number" name="number" minlength="10" maxlength="10" required>
<p id="num"></p>
</div>
<div id="ele">
<label for="password">Enter Password:</label>
<input type="password" id="password" name="password" required>
<p id="pas"></p>
</div>
<div id="ele">
<label for="confirm" id="labelc">Confirm Password:</label>
<input type="password" id="confirm" name="confirm" required>
<p id="con"></p>
</div>
<button onclick="validate()">Submit</button>
</div>
</body>
</html>