-
Notifications
You must be signed in to change notification settings - Fork 0
/
members.html
51 lines (40 loc) · 1.28 KB
/
members.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
<div class="members">
<p>
This page is only visible to computers inside Kingman Hall.
<p>
You can use this page to add or edit contact information for yourself,
as well as for other members past and present.
<p>
<form action="members.cgi" method="post">
<input type="hidden" name="edit" value="1">
<input type="submit" value="Add a Member">
</form>
<h2>Current Residents</h2>
<table class="residents">
<tr>
<th class="name">Name <span class="sort">(sort by <a href="members.cgi?sort=first">first</a>, <a href="members.cgi?sort=last">last</a>)</span></th>
<th class="room"><a href="members.cgi?sort=room">Room</a></th>
<th class="phone">Phone</th>
<th class="e-mail">E-mail</th>
</tr>
__residents__
</table>
<h2>Current Boarders</h2>
<table class="boarders">
<tr>
<th class="name">Name <span class="sort">(sort by <a href="members.cgi?sort=first">first</a>, <a href="members.cgi?sort=last">last</a>)</span></th>
<th class="phone">Phone</th>
<th class="e-mail">E-mail</th>
</tr>
__boarders__
</table>
<h2>Past Members</h2>
<table class="oldmembers">
<tr>
<th class="name">Name <span class="sort">(sort by <a href="members.cgi?sort=first">first</a>, <a href="members.cgi?sort=last">last</a>)</span></th>
<th class="phone">Phone</th>
<th class="e-mail">E-mail</th>
</tr>
__oldmembers__
</table>
</div>