-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphone_change.html
56 lines (50 loc) · 1.09 KB
/
phone_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
<!DOCTYPE html>
<html lang = "en">
<head>
<title>SIS Update Student</title
</head>
<center>
<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>
<body bgcolor="#f4d6a0">
<h1>SIS Update Student Phone Number </h1>
<form action="change_phone.php" method="POST">
<table align = "center" cellpadding = "10">
<tr>
<td>Re-enter University ID: </td>
<td><input type = "text" name = "uid" maxlength = "10"/></td>
</tr>
<tr>
<td>New Phone Number: </td>
<td><input type="text" name="phone_number" maxlength = "10"/></td>
</tr>
<tr>
<td colspan = "2" align = "center">
<input type = "submit" value = "Update" tabindex = "4">
</tr>
</table>
</form>
<br/>
<br/>
<button onclick="window.location.href='update.html'">Cancel</button>
</body>
</center>
</html>