-
Notifications
You must be signed in to change notification settings - Fork 0
/
formClassroomAddRemSwitch.cfm
53 lines (53 loc) · 1.5 KB
/
formClassroomAddRemSwitch.cfm
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
<cfset pageTitle = "Add or Change a Location for this Instructional Session">
<cfinclude template="incBegin.cfm">
<cfoutput>
<form action="addRemoveClassroom.cfm"
method="post"
name="Classroom"
id="Classroom">
<span class="formSectionTitle">#pageTitle#</span>
<div class="form">
<table width="350" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2">
<p>What would you like to do?</p>
</td>
</tr>
<tr valign="middle">
<td class="rest">
<input name="Add" type="radio" value="1" checked>
</td>
<td width="90%" class="rest">
Change the location for this instructional session
</td>
</tr>
<tr valign="middle">
<td class="rest">
<input name="Add" type="radio" value="0">
</td>
<td class="rest">
Remove the location for this instructional session
</td>
</tr>
<tr valign="top">
<td class="rest"> </td>
<td class="rest"> </td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0">
<tr valign="top">
<td>
<input name="SessID" type="hidden" value="#SessID#">
<input name="ActID" type="hidden" value="#ActID#">
<input type="submit" class="mainControl" style="width:100px;" value="OK">
</form>
</td>
<td>
<form action="session.cfm?SessID=#SessID#&ActID=#ActID#" method="post">
<input type="submit" class="mainControl" value="Cancel">
</form>
</td>
</tr>
</table>
</div>
</cfoutput>