-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformMateriaExstNewSwitch.cfm
More file actions
65 lines (65 loc) · 1.85 KB
/
formMateriaExstNewSwitch.cfm
File metadata and controls
65 lines (65 loc) · 1.85 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<cfset pageTitle = "Add an Instructional Material">
<cfinclude template="incBegin.cfm">
<cfoutput>
<form action="addRemoveMaterial.cfm"
method="post"
name="Material"
id="Material">
<span class="formSectionTitle">#pageTitle#</span>
<div class="form">
<table width="350" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="2">
<p>I would like to add...</p>
</td>
</tr>
<tr valign="middle">
<td class="rest">
<input name="newMat" type="radio" value="0" checked>
</td>
<td width="90%" class="rest">
an instructional material existing in the SIA Database
</td>
</tr>
<tr valign="middle">
<td class="rest">
<input name="newMat" type="radio" value="1">
</td>
<td class="rest">
a new instructional material
</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>
<cfif isDefined("ActID")>
<input name="ActID" type="hidden" value="#ActID#">
</cfif>
<cfif isDefined("SessID")>
<input name="SessID" type="hidden" value="#SessID#">
</cfif>
<cfif isDefined("UserID")>
<input name="UserID" type="hidden" value="#UserID#">
</cfif>
<input name="caller" type="hidden" value="formMateriaExstNewSwitch">
<input type="submit" class="mainControl" style="width:100px;" value="OK">
</form>
</td>
<td>
<cfif isDefined("ActID")>
<form action="session.cfm?ActID=#ActID#&SessID=#SessID#" method="post">
<cfelse>
<form action="materials.cfm?LibID=#SESSION.LibID#" method="post">
</cfif>
<input type="submit" class="mainControl" value="Cancel">
</form>
</td>
</tr>
</table>
</div>
</cfoutput>