addChildPagePopup.vm
1.44 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
<div id="addChildPopup" class="popup_window">
<div class="popup_title">Add Child Page to $page_name</div>
<div class="popup_content">
<form action="$full_path" method="get">
<input type="hidden" name="responder" value="addChild"/>
<table style="white-space:normal" border="0" cellspacing="0" width="100%" height="100%">
<tr>
<td>
<input type="radio" name="pageType" value="Normal"/>Static<br/>
<input type="radio" name="pageType" value="Test"/>Test<br/>
<input type="radio" name="pageType" value="Suite"/>Suite<br/>
<input type="radio" name="pageType" value="Default" checked="checked"/>Default<br/>
</td>
<td>
<table border="0" cellspacing="0" width="100%">
<tr>
<td><label for="childName">Name</label></td>
<td><input size="50" id="childName" type="text" name="name"/></td>
</tr>
<tr>
<td><label for="childContent">Content</label></td>
<td><input size="50" id="childContent" type="text" name="content" value="!contents"/></td>
</tr>
</table>
</td>
</tr>
<tr>
<td></td>
<td>
<input TYPE="button" VALUE="Cancel" onClick="popdown('addChildPopup')"/>
<input value="Add" type="submit"/>
</td>
</tr>
</table>
</form>
</div>
</div>