-
Notifications
You must be signed in to change notification settings - Fork 2
/
signUp.html
57 lines (54 loc) · 1.44 KB
/
signUp.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
<!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" />
<title>Document</title>
<link rel="stylesheet" href="./styles/signup.css" />
</head>
<body>
<form id="signup">
<div id="signup1">
<div><h1>Sign Up</h1></div>
<div>
<a href="./signIn_Login.html">Sign In Instead</a>
</div>
</div>
<hr />
<div id="signup2">
<input type="number" id="cont" />
<input
class="inpu"
type="number"
name=""
id="mob"
placeholder="Mobile Number"
/>
</div>
<p id="small">only digit allowed</p>
<input type="text" class="inpu" id="email" placeholder="Email Address" />
<input
type="password"
class="inpu"
name=""
id="password"
placeholder="Password"
/>
<input type="text" class="inpu" id="firstname" placeholder="First Name" />
<input
type="text"
class="inpu"
name=""
id="lastname"
placeholder="Last Name"
/>
<hr />
<button id="otp" class="submit">SIGNUP</button>
<button class="submit">
<a href="./index.html" style="text-decoration: none">Cancel</a>
</button>
</form>
</body>
</html>
<script src="./scripts/signup.js"></script>