-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignupcustomer.html
52 lines (46 loc) · 2.16 KB
/
signupcustomer.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
<html>
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<head>
<script src="documents/myscript.js"></script>
<link rel="stylesheet" type="text/css" href="documents/mystyle.css">
<title>SPINZA B2B HARDWARE STORE</title>
</head>
<body>
<header>
<a href="home.html"><img class="img" src="documents/logo.png" alt="logo" style="width:100px;height:100px;"></a>
<h1>SPINZA B2B STORE</h1>
</header>
<nav>
<a href="home.html">Home</a>
<a href="signin.html">Sign in</a>
<a href="contact.html">Contact</a>
<a href="about.html">About Us</a>
</nav><br><br>
<form action="home.html" onsubmit="return passmatch(this)" method="POST" style="border:1px solid #ccc">
<div class="container">
<b><h2 style="text-align: center;">Sign Up</h2></b>
<hr>
<label for="email"><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="email" required>
<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" required>
<label for="rpsw"><b>ReEnter Password</b></label>
<input type="password" placeholder="Repeat Password" id="rpsw" name="rpsw" required>
<label>
<input type="checkbox" checked="checked" name="remember" style="margin-bottom:15px"> Remember me
</label>
<p>By creating an account you agree to our <a href="#" style="color:dodgerblue">Terms & Privacy</a>.</p>
<div class="clearfix">
<button type="submit" class="signupbtn">Sign Up</button>
<button type="button" class="cancelbtn">Cancel</button>
</div>
</div>
</form>
<br><br>
<footer>
<a href="contact.html">Contact</a>
<a href="report.html">Report to Seller</a>
<br><h5>Copyright ©SPINZA. All rights reserved.</h5>
</footer>
</body>
</html>