-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
49 lines (48 loc) · 1.62 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
<!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>Sign up</title>
<link rel = "icon" href =
"./apna bazaar.jpg"
type = "image/x-icon">
<link rel="stylesheet" href="./css/signup.css">
</head>
<body>
<a href="/"></a>
<img src="./logos home page/Logo.png" alt="" id="logo">
</a>
<div id="main">
<div class="top">
<p>Sign up</p>
<label for="">Display Name</label>
<input type="text" id="name" placeholder="Enter your name">
<label for="">Email</label>
<input type="email" id="email" placeholder="Enter your email">
<label for="">Password</label>
<input type="text" id="password" placeholder="Enter your password">
<button type="submit" id="submit"> Create Account</button>
<div id="span"> <span>By continuing, you agree to</span>
<a href=""> Conditions of Use</a>
<span>and</span>
<a href="">Privacy Notice</a>
</div>
</div>
<hr>
<div class="bottom">
<span>Already a member?</span>
<button id="Sign_in">Sign In</button>
</div>
</div>
<hr id="hrbottom">
<div id="second">
<div><a href="">Conditions</a></div>
<div><a href="">Privacy Notice</a></div>
<div><a href="">Help</a></div>
</div>
<div id="p"><p>© 1996-2022, Aapnidukan.com, Inc. or its affiliates</p></div>
</body>
</html>
<script src="./src/signup.js"></script>