Huge HTML/CSS rewrite (see forum)
[mailer.git] / templates / de / html / admin / admin_login_form.tpl
1 <div align="center">
2 <form accept-charset="utf-8" action="{?URL?}/modules.php?module=admin&amp;$content[target]=$content[value]" method="post">
3 <table border="0" cellspacing="0" cellpadding="0" class="admin_table dashed">
4         <tr>
5                 <td colspan="2" align="center" height="30" class="admin_title bottom2">
6                         <strong>{--ADMIN_LOGIN_TITLE--}</strong>
7                 </td>
8         </tr>
9         <tr>
10                 <td colspan="2" align="center">
11                         {--ADMIN_LOGIN_NOW--}
12                 </td>
13         </tr>
14         <tr>
15                 <td width="50%" align="right">{--ENTER_ADMIN_LOGIN--}:</td>
16                 <td width="50%">
17                         <input type="text" name="login" size="10" maxlength="100" class="admin_normal" value="$content[login]" />
18                 </td>
19         </tr>
20         $content[login_message]
21         <tr>
22                 <td width="50%" align="right">
23                         {--ENTER_ADMIN_PASS--}:
24                         <div class="tiny">
25                                 [<a href="{?URL?}/modules.php?module=admin&amp;reset_pass=1">{--ADMIN_RESET_PASSWORD--}</a>]
26                         </div>
27                 </td>
28                 <td width="50%">
29                         <input type="password" class="admin_normal" name="pass" size="10" maxlength="100" />
30                 </td>
31         </tr>
32         $content[pass_message]
33         <tr><td colspan="2" class="bottom2 seperator">&nbsp;</td></tr>
34         <!--
35         @TODO Doesn't work with sessions
36         <tr>
37                 <td class="bottom2" width="50%" align="right">{--SELECT_TIMEOUT--}:</td>
38                 <!-- @TODO Try to move the select box to our generic functions //-->
39                 <td class="bottom2" width="50%"><select name="timeout" size="1" class="admin_select">
40                         <option value="86400">{--TIMEOUT_ONE_DAY--}</option>
41                         <option value="172800">{--TIMEOUT_TWO_DAYS--}</option>
42                         <option value="259200">{--TIMEOUT_THREE_DAYS--}</option>
43                         <option value="604800">{--TIMEOUT_ONE_WEEK--}</option>
44                         <option value="1209600">{--TIMEOUT_TWO_WEEKS--}</option>
45                         <option value="2592000">{--TIMEOUT_ONE_MONTH--}</option>
46                         <option value="15984000">{--TIMEOUT_HALF_YEAR--}</option>
47                         <option value="31536000" selected="selected">{--TIMEOUT_FULL_YEAR--}</option>
48                 </select></td>
49         </tr>
50         //-->
51         <tr>
52                 <td align="center" colspan="2" class="admin_footer">
53                         <input type="hidden" name="timeout" value="0" />
54                         <input type="reset" class="admin_reset" value="{--CLEAR_FORM--}" />
55                         <input type="submit" class="admin_submit submit" name="ok" value="{--ADMIN_LOGIN_SUBMIT--}" />
56                 </td>
57         </tr>
58 </table>
59 </form>
60 </div>