-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupdate_customerprofile.html
118 lines (117 loc) · 2.79 KB
/
update_customerprofile.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
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
<script>alert('Please enter all values')</script><!DOCTYPE HTML>
<head>
<title>UPDATE CUSTOMER PROFILE</title>
</head>
<body>
<form id="update_profile" action="" method="post">
<table align="center" style="border:2px solid blue;">
<tr>
<td align="right">
Username:
</td>
<td colspan="3" align="center">
</td>
</tr>
<tr>
<td align="right">
New PIN<span style="color:red">*</span>:
</td>
<td>
<input type="text" id="new_pin" name="new_pin">
</td>
<td align="right">
Re-type New PIN<span style="color:red">*</span>:
</td>
<td>
<input type="text" id="retypenew_pin" name="retypenew_pin">
</td>
</tr>
<tr>
<td align="right">
First Name<span style="color:red">*</span>:
</td>
<td colspan="3">
<input type="text" id="firstname" name="firstname">
</td>
</tr>
<tr>
<td align="right">
Last Name<span style="color:red">*</span>:
</td>
<td colspan="3">
<input type="text" id="lastname" name="lastname">
</td>
</tr>
<tr>
<td align="right">
Address<span style="color:red">*</span>:
</td>
<td colspan="3">
<input type="text" id="address" name="address">
</td>
</tr>
<tr>
<td align="right">
City<span style="color:red">*</span>:
</td>
<td colspan="3">
<input type="text" id="city" name="city">
</td>
</tr>
<tr>
<td align="right">
State<span style="color:red">*</span>:
</td>
<td>
<select id="state" name="state">
<option selected disabled>select a state</option>
<option>Michigan</option>
<option>California</option>
<option>Tennessee</option>
</select>
</td>
<td align="right">
Zip<span style="color:red">*</span>:
</td>
<td>
<input type="text" id="zip" name="zip">
</td>
</tr>
<tr>
<td align="right">
Credit Card<span style="color:red">*</span>:
</td>
<td>
<select id="credit_card" name="credit_card">
<option selected disabled>select a card type</option>
<option>VISA</option>
<option>MASTER</option>
<option>DISCOVER</option>
</select>
</td>
<td align="left" colspan="2">
<input type="text" id="card_number" name="card_number" placeholder="Credit card number">
</td>
</tr>
<tr>
<td align="right" colspan="2">
Expiration Date<span style="color:red">*</span>:
</td>
<td colspan="2" align="left">
<input type="text" id="expiration_date" name="expiration_date" placeholder="MM/YY">
</td>
</tr>
<tr>
<td align="right" colspan="2">
<input type="submit" id="update_submit" name="update_submit" value="Update">
</td>
</form>
<form id="cancel" action="index.html" method="post">
<td align="left" colspan="2">
<input type="submit" id="cancel_submit" name="cancel_submit" value="Cancel">
</td>
</tr>
</table>
</form>
</body>
</html>