Revision 1440377b
Von Hans Peter Schlaepfer vor fast 6 Jahren hinzugefügt
templates/webpages/admin/adminlogin.html | ||
---|---|---|
1 |
[%- USE T8 %]
|
|
1 |
[% USE T8 %] |
|
2 | 2 |
[% USE HTML %] |
3 |
[% USE LxERP %][%- USE L -%] |
|
4 |
<center> |
|
5 |
<table class="login" border="3" cellpadding="20"> |
|
6 |
<tr> |
|
7 |
<td class="login" align="center"> |
|
8 |
<a href="http://www.kivitendo.de" target="_top" class="no-underlined-links"><img src="image/kivitendo.png" class='kivitendo-logo' border="0"></a> |
|
9 |
<h1>[% LxERP.t8('kivitendo v#1 administration', version) %]</h1> |
|
10 |
|
|
11 |
[% IF error %] |
|
12 |
<p><span class="message_error_login">[% HTML.escape(error) %]</span></p> |
|
13 |
[% END %] |
|
14 |
|
|
15 |
<p> |
|
16 |
|
|
17 |
<form method="post" action="controller.pl"> |
|
18 |
[%- L.hidden_tag("action", 'Admin/login') %] |
|
19 |
[%- L.hidden_tag("do_login", 1) %] |
|
20 |
|
|
21 |
<table width="100%"> |
|
22 |
<tr> |
|
23 |
<td align="center"> |
|
24 |
<table> |
|
25 |
<tr> |
|
26 |
<th align="right">[% 'Password' | $T8 %]</th> |
|
27 |
<td>[%- L.input_tag("{AUTH}admin_password", '', type="password", class="login", id="admin_password", size="30", class="initial_focus") %]</td> |
|
28 |
</tr> |
|
29 |
</table> |
|
30 |
|
|
31 |
<br> |
|
32 |
|
|
33 |
[% L.submit_tag('dummy', LxERP.t8('Login')) %] |
|
34 |
|
|
35 |
</td> |
|
36 |
</tr> |
|
37 |
</table> |
|
38 |
</form> |
|
39 |
|
|
40 |
</td> |
|
41 |
</tr> |
|
3 |
[% USE LxERP %] |
|
4 |
[% USE L -%] |
|
5 |
<div class="login" id="login"> |
|
6 |
<h1>[% LxERP.t8('kivitendo v#1 administration', version) %]</h1> |
|
7 |
<div class="logo"> |
|
8 |
<a href="http://www.kivitendo.de"><img src="image/kivitendo.png"></a> |
|
9 |
|
|
10 |
[% IF error %] |
|
11 |
<div class="message_error_login">[% HTML.escape(error) %]</div> |
|
12 |
[% END %] |
|
13 |
</div> |
|
14 |
|
|
15 |
|
|
16 |
<form method="post" action="controller.pl"> |
|
17 |
[% L.hidden_tag("action", 'Admin/login') %] |
|
18 |
[% L.hidden_tag("do_login", 1) %] |
|
19 |
<div class="separate-form"> |
|
20 |
<table class="tbl-horizontal login"> |
|
21 |
<caption>[% 'Admin Login' | $T8 %]</caption> |
|
22 |
<colgroup><col class="wi-small"><col class="wi-normal"></colgroup> |
|
23 |
<tbody> |
|
24 |
<tr> |
|
25 |
<th>[% 'Password' | $T8 %]</th> |
|
26 |
<td>[%- L.input_tag("{AUTH}admin_password", '', type="password", class="initial_focus", id="admin_password") %]</td> |
|
27 |
</tr> |
|
28 |
<tr> |
|
29 |
<th></th> |
|
30 |
<td>[% L.submit_tag('dummy', LxERP.t8('Login')) %]</td> |
|
31 |
</tr> |
|
32 |
</tbody> |
|
42 | 33 |
</table> |
34 |
</div> |
|
35 |
</form> |
|
43 | 36 |
|
44 |
<p> |
|
45 |
<a href="controller.pl?action=LoginScreen/user_login" target="_top">[%- LxERP.t8('User login') %]</a> |
|
46 |
| |
|
47 |
<a href="doc/kivitendo-Dokumentation.pdf" target="_top">[%- LxERP.t8('Documentation') %]</a> |
|
37 |
<p style="text-align:center;">
|
|
38 |
<a href="controller.pl?action=LoginScreen/user_login" target="_top">[%- LxERP.t8('User login') %]</a>
|
|
39 |
|
|
|
40 |
<a href="doc/kivitendo-Dokumentation.pdf" target="_top">[%- LxERP.t8('Documentation') %]</a>
|
|
48 | 41 |
</p> |
42 |
</div><!-- /.login --> |
Auch abrufbar als: Unified diff
Neues kivitendo Design Aenderungen in templates/webpages/admin/..