-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddress_change.html
138 lines (126 loc) · 3.55 KB
/
address_change.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang = "en">
<head>
<title>SIS Update Student</title>
</head>
<center>
<body bgcolor="#f4d6a0">
<!-- css styling block -->
<style type="text/css">
h1,h3
{
font-family: Calibri;
font-style: normal;
font-weight: bold;
color: Black;
text-align: center;
}
table
{
font-family: Calibri;
color: black;
font-size: 13pt;
font-style: normal;
background-color: #eff3f6;
border: 2px solid black
}
table.inner{border: 0px}
</style>
<!-- heading for the page -->
<h1>SIS Update Student Address </h1>
<!-- address change form -->
<form action="change_address.php" method="POST">
<table align = "center" cellpadding = "10">
<!-- Row to re-enter University ID -->
<tr>
<td>Re-enter University ID: </td>
<td><input type = "text" name = "uid" maxlength = "10"/></td>
</tr>
<!-- Row to enter new street address -->
<tr>
<td>New Street Address: </td>
<td><input type="text" name="address" maxlength = "150"/></td>
</tr>
<!-- Row to enter new city name -->
<tr>
<td>New City: </td>
<td><input type="text" name="city" maxlength = "30"/></td>
</tr>
<!-- Row to enter new zip code -->
<tr>
<td>New Zip code: </td>
<td><input type="text" name="zip_code" maxlength = "5"/></td>
</tr>
<!-- Row with drop down menu to select new state -->
<tr>
<td>New State: </td>
<td>
<select name="state" id="state">
<option value="-1">State:</option>
<option value="AL">AL</option>
<option value="AK">AK</option>
<option value="AZ">AZ</option>
<option value="AR">AR</option>
<option value="CA">CA</option>
<option value="CO">CO</option>
<option value="CT">CT</option>
<option value="DE">DE</option>
<option value="FL">FL</option>
<option value="GA">GA</option>
<option value="HI">HI</option>
<option value="ID">ID</option>
<option value="IL">IL</option>
<option value="IN">IN</option>
<option value="IA">IA</option>
<option value="KS">KS</option>
<option value="KY">KY</option>
<option value="LA">LA</option>
<option value="ME">ME</option>
<option value="MD">MD</option>
<option value="MA">MA</option>
<option value="MI">MI</option>
<option value="MN">MN</option>
<option value="MS">MS</option>
<option value="MO">MO</option>
<option value="MT">MT</option>
<option value="NE">NE</option>
<option value="NV">NV</option>
<option value="NH">NH</option>
<option value="NJ">NJ</option>
<option value="NM">NM</option>
<option value="NY">NY</option>
<option value="NC">NC</option>
<option value="ND">ND</option>
<option value="OH">OH</option>
<option value="OK">OK</option>
<option value="OR">OR</option>
<option value="PA">PA</option>
<option value="RI">RI</option>
<option value="SC">SC</option>
<option value="SD">SD</option>
<option value="TN">TN</option>
<option value="TX">TX</option>
<option value="UT">UT</option>
<option value="VT">VT</option>
<option value="VA">VA</option>
<option value="WA">WA</option>
<option value="WV">WV</option>
<option value="WI">WI</option>
<option value="WY">WY</option>
</select>
</td>
</tr>
<!-- Button to submit the form -->
<tr>
<td colspan = "2" align = "center">
<input type = "submit" value = "Update" tabindex = "4">
</tr>
</table>
</form>
<br/>
<br/>
<!-- Button to cancel the form submission and go back to prev page -->
<button onclick="window.location.href='update.html'">Cancel</button>
</body>
</center>
</html>