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>
40
          {TEXT_PLEASE_SELECT}
41
          ...</option>
42
          <!-- BEGIN language_list_block -->
43
          <option value="{VALUE}">
44
          {NAME}
45
          </option>
46
          <!-- END language_list_block -->
47
        </select>
48
      </td>
49
      <td width="110">
50
        <input type="submit" name="submit" value="{TEXT_UNINSTALL}" style="width: 100px;" />
51
      </td>
52
    </tr>
53
  </table>
54
  <br />
55
</form>
56
<form name="details" action="details.php" method="post" class="{DISPLAY_LIST}">
57
  <h2>{HEADING_LANGUAGE_DETAILS}</h2>
58
  <table cellpadding="2" cellspacing="0" border="0" width="100%">
59
    <tr>
60
      <td>
61
        <select name="code" style="width: 97%;">
62
          <option value="" selected>
63
          {TEXT_PLEASE_SELECT}
64
          ...</option>
65
          <!-- BEGIN language_list_block -->
66
          <option value="{VALUE}">
67
          {NAME}
68
          </option>
69
          <!-- END language_list_block -->
70
        </select>
71
      </td>
72
      <td width="110">
73
        <input type="submit" name="submit" value="{TEXT_VIEW_DETAILS}" style="width: 100px;" />
74
      </td>
75
    </tr>
76
  </table>
77
  <br />
78
</form>
79
<!-- END main_block -->
(10-10/32)