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

    
9
<h2>{HEADING_INSTALL_LANGUAGE}</h2>
10

    
11
<table cellpadding="2" cellspacing="0" border="0" width="100%">
12
<tr>
13
	<td>
14
		<input type="file" name="userfile" size="82%" />
15
		<script language="javascript" type="text/javascript">
16
		document.install.userfile.focus();
17
		</script>
18
	</td>
19
	<td width="110" align="left">
20
		<input type="submit" name="submit" value="{TEXT_INSTALL}" style="width: 100px;" />
21
	</td>
22
</tr>
23
</table>
24

    
25
<br />
26

    
27
</form>
28

    
29
<form name="uninstall" action="uninstall.php" method="post" class="{DISPLAY_UNINSTALL}">
30

    
31
<h2>{HEADING_UNINSTALL_LANGUAGE}</h2>
32

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

    
49
<br />
50

    
51
</form>
52

    
53
<form name="details" action="details.php" method="post" class="{DISPLAY_LIST}">
54

    
55
<h2>{HEADING_LANGUAGE_DETAILS}</h2>
56

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

    
73
<br />
74
</form>
75

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