Project

General

Profile

1
<!-- BEGIN main_block -->
2

    
3
<div class="box">
4
	{URL_MODULES}&nbsp;&nbsp;{URL_TEMPLATES}
5
</div>
6

    
7
<form name="install" enctype="multipart/form-data" action="install.php" method="post" class="{DISPLAY_INSTALL}">
8
{FTAN}
9
<h2>{HEADING_INSTALL_LANGUAGE}</h2>
10
<table summary="" cellpadding="2" cellspacing="0" border="0" width="100%">
11
<tr>
12
	<td>
13
		<input type="file" name="userfile" size="82" />
14
		<script language="javascript" type="text/javascript">
15
		document.install.userfile.focus();
16
		</script>
17
	</td>
18
	<td width="110" align="left">
19
		<input type="submit" name="submit" value="{TEXT_INSTALL}" style="width: 100px;" />
20
	</td>
21
</tr>
22
</table>
23

    
24
<br />
25

    
26
</form>
27

    
28
<form name="uninstall" action="uninstall.php" method="post" class="{DISPLAY_UNINSTALL}">
29
{FTAN}
30
<h2>{HEADING_UNINSTALL_LANGUAGE}</h2>
31

    
32
<table summary="" cellpadding="2" cellspacing="0" border="0" width="100%">
33
<tr>
34
	<td>
35
		<select name="code" style="width: 97%;">
36
		<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
37
		<!-- BEGIN language_list_block -->
38
			<option value="{VALUE}">{NAME}</option>
39
		<!-- END language_list_block -->
40
		</select>
41
	</td>
42
	<td width="110">
43
		<input type="submit" name="submit" value="{TEXT_UNINSTALL}" style="width: 100px;" />
44
	</td>
45
</tr>
46
</table>
47

    
48
<br />
49

    
50
</form>
51

    
52
<form name="details" action="details.php" method="post" class="{DISPLAY_LIST}">
53
{FTAN}
54
<h2>{HEADING_LANGUAGE_DETAILS}</h2>
55

    
56
<table summary="" cellpadding="2" cellspacing="0" border="0" width="100%">
57
<tr>
58
	<td>
59
		<select name="code" style="width: 97%;">
60
		<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
61
		<!-- BEGIN language_list_block -->
62
			<option value="{VALUE}">{NAME}</option>
63
		<!-- END language_list_block -->
64
		</select>
65
	</td>
66
	<td width="110">
67
		<input type="submit" name="submit" value="{TEXT_VIEW_DETAILS}" style="width: 100px;" />
68
	</td>
69
</tr>
70
</table>
71

    
72
<br />
73
</form>
74

    
75
<!-- END main_block -->
(10-10/31)