-
Notifications
You must be signed in to change notification settings - Fork 0
/
SignUp.html
57 lines (57 loc) · 2.45 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>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>Sign Up</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='SignUp.css'>
<script src='main.js'></script>
</head>
<body>
<div id="navbar">
<div class="nav">
<a href="index.html">IDEAKART</a>
<input type="text" name="" id="search" placeholder="Search">
<button>Search</button>
<a href=""></a>
</div>
<div class="nav">
<a href="./About.html">About</a>
<a href="./Contact.html">Contact</a>
<a href="./SignIn.html">Sign In</a>
<a href="./SignUp.html">Sign Up</a>
</div>
</div>
<div id="cant">
<h1>Sign up</h1>
<form>
<label for="">Name</label><br>
<input id="name" type="text" name="" placeholder="Full name" required="required"><br>
<label for="">Mobile Number</label><br>
<input id="mbl" type="number" name="" required="required"><br>
<label for="">Email</label><br />
<input id="email" type="text" placeholder="Email" required="required"><br />
<label for="">Password <span>(Minimum six characters)</span></label><br />
<input id="pass" type="password" placeholder="Password" required="required"><br />
<label for=""> Confirm Password</label><br>
<input id="conPass" type="password" name="" placeholder="confirm password" required="required"><br>
<input type="submit" name="" id="btn"><br>
<p> Have you an account? <a href="SignIn.html" target="_blank">Log in</a></p>
</form>
</div>
<div id="cant2">
<h2>Get To Know Us</h2>
<ul>
<li><a href="About.html">About</a></li>
<li><a href="Contact.html">Contact</a></li>
<li><a href="">Search</a></li>
<li><a href="https://ideakart.com/privacy" target="_blank">Privacy Policy</a></li>
<li><a href="https://ideakart.com/refund-policy" target="_blank">Refund Policy</a></li>
<li><a href="https://ideakart.com/make-money" target="_blank">Earn Money Online</a></li>
<li><a href="">QuickBuyer</a></li>
</ul>
</div>
</body>
</html>
<script src="SignUp.js"></script>