-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditstudent.html
More file actions
36 lines (34 loc) · 775 Bytes
/
editstudent.html
File metadata and controls
36 lines (34 loc) · 775 Bytes
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
<style>
form p label {
width: 100px;
display: inline-block;
}
.edits {
color: #666666;
font: 13px/120% Tahoma,Arial,Helvetica,Verdana,sans-serif;
margin: 0.5em 0 1em;
padding: 0.5em;
}
</style>
<form class="edits"method=post>
<p>
<label for="Student ID">Student ID:</label>
<input type="text" name="Student ID">
</p><p>
<label for="First">First Name:</label>
<input type="text" name="First Name">
</p><p>
<label for "Last Name">Last Name:</label>
<input type="text" name="Last Name">
</p><p>
<label for "iPad #">iPad #</label>
<input type="text" name="iPad #">
</p><p>
<label for "Paid">Paid?</label>
<select name="Paid">
<option>Yes</option>
<option>No</option>
</select>
</p>
<input align="center" type="submit" value="Update"/>
</form>