-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformAddSessionSwitch.cfm
More file actions
51 lines (51 loc) · 1.54 KB
/
Copy pathformAddSessionSwitch.cfm
File metadata and controls
51 lines (51 loc) · 1.54 KB
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
<cfset pageTitle = "Add an Instructional Session">
<cfinclude template="incBegin.cfm">
<cfoutput>
<form action="addSession.cfm"
method="post"
name="AddSession"
id="AddSession">
<span class="formSectionTitle">#pageTitle#</span>
<div class="form">
<table width="350" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2">
<p>Would you like to add a session to this instructional activity?</p>
</td>
</tr>
<tr valign="middle">
<td class="rest">
<input name="addActSess" type="radio" value="1" checked>
</td>
<td width="90%" class="rest">Yes</td>
</tr>
<tr valign="middle">
<td class="rest">
<input name="addActSess" type="radio" value="0">
</td>
<td class="rest">No, not right now</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="Submit" type="submit" class="mainControl" style="width:100px;" value="OK">
<input name="ActID" type="hidden" value="#SESSION.ActID#">
<input name="caller" type="hidden" value="formAddSessionSwitch">
<!--/form-->
</td>
<td>
<input name="Submit" type="submit" class="mainControl" value="Cancel">
<!---form action="activity.cfm?ActID=#SESSION.ActID#" method="post">
<input type="submit" class="mainControl" value="Cancel">
</form--->
</td>
</tr>
</table>
</div>
</form>
</cfoutput>