-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.php
91 lines (63 loc) · 4.35 KB
/
signup.php
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<title>E-Commerce Website</title>
<script language="JavaScript" type="text/javascript" src="js/checkform.js"></script>
</head>
<body>
<? include 'topmenu.php'; ?>
<div class="row signup">
<div class="container">
<div class="col-md-4"></div>
<div class="col-md-4 form">
<h2>Sign Up to Online RS!</h2><br>
<form action="addcustomer.php" method="post" onsubmit="return validate(this);">
<label for="emailaddress" class="sr-only">Email address</label>
<input class="form-control" placeholder="Email address" type="text" name="emailaddress"><span id="emailmsg"></span>
<br>
<label for="password" class="sr-only">Password</label>
<input class="form-control" placeholder="Password" type="password" name="password"><span id="passwdmsg"></span>
<br>
<label for="repassword" class="sr-only">Re-enter password</label>
<input class="form-control" placeholder="Retype Password" type="password" name="repassword"><span id="repasswdmsg"></span>
<br>
<label for="complete_name" class="sr-only">Name</label>
<input class="form-control" placeholder="Name" type="text" name="complete_name"><span id="usermsg"></span>
<br>
<label for="address1" class="sr-only">Address</label>
<input class="form-control" placeholder="Address 1" type="text" name="address1">
<br>
<label for="address2" class="sr-only">Address</label>
<input class="form-control" placeholder="Address 2" type="text" name="address2">
<br>
<label for="city" class="sr-only">City</label>
<input class="form-control" placeholder="City" type="text" name="city">
<br>
<label for="state" class="sr-only">State</label>
<input class="form-control" placeholder="State" type="text" name="state">
<br>
<label for="country" class="sr-only">Country</label>
<input class="form-control" placeholder="Country" type="text" name="country">
<br>
<label for="zipcode" class="sr-only">Zipcode</label>
<input class="form-control" placeholder="Zipcode" type="text" name="zipcode">
<br>
<label for="phone_no" class="sr-only">Phone Number</label>
<input class="form-control" placeholder="Phone Number" type="text" name="phone_no">
<br>
<!--
<div class="checkbox">
<label>
<input type="checkbox" value="remember-me"> Remember me
</label>
</div>
-->
<button class="btn btn-primary" type="submit">Sign Up</button>
<button class="btn btn-primary" type="reset">Reset</button>
</form>
</div>
</div>
</div>
<? include 'footer.php'; ?>
</body>
</html>