-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.php
205 lines (184 loc) · 5.04 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="signup.css">
<title>User Registeration</title>
<script>
function checkPassword(form) {
if (form.userpassword.value == '')
alert ("Please enter Password");
else if ( form.confirmpassword.value == '')
alert ("Please enter confirm password");
else if (form.userpassword.value != form.confirmpassword.value)
{
alert ("\nPassword did not match: Please try again...")
return false;
}
}
</script>
</head>
<body>
<?php
if($_POST["signup"] == 1)
{
?>
<div class="container">
<form onSubmit = "return checkPassword(this)" action="userdb.php" method="POST">
<table>
<h2>Signup</h2>
<tr>
<td>
First Name
</td>
<td>
<input type="text" placeholder="First Name" name="firstname" required>
</td>
</tr>
<tr>
<td>
Middle Name
</td>
<td>
<input type="text" placeholder="Middle Name" name="middlename" >
</td>
</tr>
<tr>
<td>
Last Name
</td>
<td>
<input type="text" placeholder="Last Name" name="lastname" required >
</td>
</tr>
<tr>
<td>
Email
</td>
<td>
<input type="email" placeholder="Your email" name = "email" required >
</td>
</tr>
<tr>
<td>
Password
</td>
<td>
<input type="password" placeholder="Your password" name = "userpassword" required>
</td>
</tr>
<tr>
<td>
Confirm Password
</td>
<td>
<input type="password" placeholder="Confirm password" name = "confirmpassword" required >
</td>
</tr>
<tr>
<td>
Gender
</td>
<td>
<input type="radio" value=1 name = "gender" selected>Male
<input type="radio" value=2 name = "gender" >Female
<input type="radio" value=3 name = "gender" >Non Binary
<input type="radio" value=4 name = "gender" >Prefer Not to Mention
</td>
</tr>
<tr>
<td>
Phone Number
</td>
<td>
<input type="text" name = "phone" required>
</td>
</tr>
<tr>
<td>
Date of Birth
</td>
<td>
<input type="date" name = "dateofbirth" required>
</td>
</tr>
<tr>
<td>
Address Line 1
</td>
<td>
<input type="text" name = "address1" required>
</td>
</tr>
<tr>
<td>
Address Line 2
</td>
<td>
<input type="text" name = "address2">
</td>
</tr>
<tr>
<td>
City
</td>
<td>
<input type="text" name = "city" required>
</td>
</tr>
<tr>
<td>
State
</td>
<td>
<input type="text" name = "statename" required>
</td>
</tr>
<tr>
<td>
Country
</td>
<td>
<input type="text" name = "country" required>
</td>
</tr>
<tr>
<td>
Pin Code
</td>
<td>
<input type="text" name = "pincode" required>
</td>
</tr>
<tr>
<td>
Preferred Payment Method
</td>
<td>
<select name="payment">
<option value=1>Paytm</option>
<option value=2>Cash on Delivery</option>
<option value=3>Credit Card</option>
<option value=4>Debit Card</option>
<option value=5>GPay</option>
<option value=6>BHIM UPI</option>
</select>
</td>
</tr>
<tr>
<td><input type="submit" value="Signup"></td>
</tr>
</table>
<input type="hidden" name="s" value=1>
</form>
</div>
<?php
}
else
{
header("Location: userlogin.php");
}
?>
</body>
</html>