-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.jsp
86 lines (73 loc) · 2.26 KB
/
test.jsp
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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<center>
<link rel="stylesheet" href="style.css">
<% response.sendRedirect("ChartGeneration"); %>
<center><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/> <h1><font color="#1ab188">Create a New Account</font></h1> </center>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="javascripts.jsp"></script>
<div class="container" align="center" style="padding:50px">
<form method='post' action='ValidRegistration'>
<table><b>
<br/><br/>
<tr>
<td>
<input class="login" type="name"required name="name" placeholder="Name">
</td>
</tr>
<tr>
<td>
<input class="login" type="text"required name="emailId" id="emailId" placeholder="EmailId" >
<div id="status"></div>
<script type="text/javascript" src="chk_user.js"></script>
</td></tr>
<tr>
<td>
<input class="login" type="password"required name="password" placeholder="Password" maxlength="32">
</td>
</tr>
<tr>
<td>
<input class="login" type="phoneNumber"required name="phoneNumber" placeholder="Phone Number">
</td>
</tr>
<tr>
<td>
<input class="login" type="address"required name="address" placeholder="Address">
</td>
</tr>
<tr>
<td>
<input class="login" type="city"required name="city" placeholder="City">
</td>
</tr>
<tr>
<td>
<input class="login" type="state"required name="state" placeholder="State">
</td>
</tr>
<tr>
<td>
<input class="login" type="zipcode"required name="zipcode" placeholder="Zipcode">
</td>
</tr>
<tr>
<td>Role</td>
<td><select id='role' name='role'>
<option value='customer'>Customer</option>
<option value='storeManager'>Store Manager</option>
</select></td>
</tr>
<tr>
<td><input type="submit" style="padding:10px" value="SignUp" class="btn btn-gold">
</td>
</tr>
</form>
</table>
</div>
</body>
</html>