Project

General

Profile

1
<!-- BEGIN main_block -->
2

    
3
<table cellpadding="5" cellspacing="0" border="0" align="center" width="100%" style="margin-bottom:10px;">
4
	<tr style="background:#f0f0f0;">
5
		<td align="left">{CHANGE_TEMPLATE_NOTICE}</td>
6
		<td align="right">
7
			{URL_MODULES}
8
			-
9
			{URL_TEMPLATES}
10
			-
11
			{URL_ADVANCED}
12
		</td>
13
     </tr>
14
</table>
15

    
16
<form name="install" enctype="multipart/form-data" action="install.php" method="post" class="{DISPLAY_INSTALL}">
17
  <h2>{HEADING_INSTALL_LANGUAGE}</h2>
18
  <table cellpadding="2" cellspacing="0" border="0" width="100%">
19
    <tr>
20
      <td>
21
        <input type="file" name="userfile" size="97%" />
22
        <script language="javascript" type="text/javascript">
23
		document.install.userfile.focus();
24
		</script>
25
      </td>
26
      <td width="110" align="left">
27
        <input type="submit" name="submit" value="{TEXT_INSTALL}" style="width: 100px;" />
28
      </td>
29
    </tr>
30
  </table>
31
  <br />
32
</form>
33
<form name="uninstall" action="uninstall.php" method="post" class="{DISPLAY_UNINSTALL}">
34
  <h2>{HEADING_UNINSTALL_LANGUAGE}</h2>
35
  <table cellpadding="2" cellspacing="0" border="0" width="100%">
36
    <tr>
37
      <td>
38
        <select name="code" style="width: 97%;">
39
		<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
40
		<!-- BEGIN language_list_block -->
41
			<option value="{VALUE}">{NAME}</option>
42
          <!-- END language_list_block -->
43
        </select>
44
      </td>
45
      <td width="110">
46
        <input type="submit" name="submit" value="{TEXT_UNINSTALL}" style="width: 100px;" />
47
      </td>
48
    </tr>
49
  </table>
50
  <br />
51
</form>
52
<form name="details" action="details.php" method="post" class="{DISPLAY_LIST}">
53
  <h2>{HEADING_LANGUAGE_DETAILS}</h2>
54
  <table cellpadding="2" cellspacing="0" border="0" width="100%">
55
    <tr>
56
      <td>
57
        <select name="code" style="width: 97%;">
58
		<option value="" selected="selected">{TEXT_PLEASE_SELECT}...</option>
59
		<!-- BEGIN language_list_block -->
60
			<option value="{VALUE}">{NAME}</option>
61
          <!-- END language_list_block -->
62
        </select>
63
      </td>
64
      <td width="110">
65
        <input type="submit" name="submit" value="{TEXT_VIEW_DETAILS}" style="width: 100px;" />
66
      </td>
67
    </tr>
68
  </table>
69
  <br />
70
</form>
71
<!-- END main_block -->
(10-10/32)