Revision f867803c
Von Moritz Bunkus vor fast 12 Jahren hinzugefügt
css/kivitendo/main.css | ||
---|---|---|
117 | 117 |
th.login { |
118 | 118 |
text-align: right; |
119 | 119 |
} |
120 |
div.admin { |
|
121 |
background-color: #FFFFE0; |
|
122 |
padding: 8px; |
|
123 |
color: #000000; |
|
120 |
.admin h1 { |
|
121 |
background-color: #fe5f14; |
|
122 |
text-color: #ffffff; |
|
124 | 123 |
} |
125 | 124 |
body.menu { |
126 | 125 |
color: #000000; |
locale/de/all | ||
---|---|---|
248 | 248 |
'BWA' => 'BWA', |
249 | 249 |
'Back' => 'Zurück', |
250 | 250 |
'Back to login' => 'Zurück zur Anmeldung', |
251 |
'Back to the login page' => 'Zurück zur Loginseite', |
|
252 | 251 |
'Background job history' => 'Verlauf der Hintergrund-Jobs', |
253 | 252 |
'Background jobs' => 'Hintergrund-Jobs', |
254 | 253 |
'Background jobs and task server' => 'Hintergrund-Jobs und Task-Server', |
... | ... | |
670 | 669 |
'Do you want to store the existing onhand values into a new warehouse?' => 'Möchten Sie die vorhandenen Mengendaten in ein Lager übertragen?', |
671 | 670 |
'Document' => 'Dokument', |
672 | 671 |
'Document Project Number' => 'Projektnummer des Belegs', |
672 |
'Documentation' => 'Dokumentation', |
|
673 | 673 |
'Documentation (in German)' => 'Dokumentation', |
674 | 674 |
'Documents in the WebDAV repository' => 'Dokumente im WebDAV-Repository', |
675 | 675 |
'Done' => 'Fertig', |
... | ... | |
2178 | 2178 |
'User Login' => 'Als Benutzer anmelden', |
2179 | 2179 |
'User data migration' => 'Benutzerdatenmigration', |
2180 | 2180 |
'User deleted!' => 'Benutzer gelöscht!', |
2181 |
'User login' => 'Benutzeranmeldung', |
|
2181 | 2182 |
'User migration complete' => 'Benutzermigration abgeschlossen', |
2182 | 2183 |
'User name' => 'Benutzername', |
2183 | 2184 |
'User saved!' => 'Benutzer gespeichert!', |
... | ... | |
2377 | 2378 |
'invoice_list' => 'debitorenbuchungsliste', |
2378 | 2379 |
'kivitendo' => 'kivitendo', |
2379 | 2380 |
'kivitendo Homepage' => 'Infos zu kivitendo', |
2381 |
'kivitendo administration' => 'kivitendo Administration', |
|
2380 | 2382 |
'kivitendo can fix these problems automatically.' => 'kivitendo kann solche Probleme automatisch beheben.', |
2381 | 2383 |
'kivitendo has been switched to group-based access restrictions.' => 'kivitendo wurde auf eine gruppenbasierte Benutzerzugriffsverwaltung umgestellt.', |
2382 | 2384 |
'kivitendo has found one or more problems in the general ledger.' => 'kivitendo hat ein oder mehrere Probleme im Hauptbuch gefunden.', |
templates/webpages/admin/adminlogin.html | ||
---|---|---|
1 | 1 |
[%- USE T8 %] |
2 | 2 |
[% USE HTML %] |
3 | 3 |
[% USE LxERP%] |
4 |
<script type='text/javascript'> |
|
5 |
$(function(){ document.getElementsById('rpw').focus();}); |
|
6 |
</script> |
|
7 |
<div align="center"> |
|
8 |
|
|
9 |
<a href="http://www.kivitendo.org"><img src="image/kivitendo.png" border="0"></a> |
|
10 |
|
|
11 |
<h3 class="login">[% 'kivitendo' | $T8 %] [% HTML.escape(version) %]</h3> |
|
12 |
|
|
13 |
<h2>[% 'Administration' | $T8 %]</h2> |
|
14 |
|
|
15 |
[% IF error %] |
|
16 |
<p><span class="message_error_login">[% error %]</span></p> |
|
17 |
[% END %] |
|
18 |
|
|
19 |
<form method="post" action="admin.pl"> |
|
20 |
|
|
21 |
<table> |
|
22 |
<tr> |
|
23 |
<th>[% 'Password' | $T8 %]</th> |
|
24 |
<td><input type="password" name="{AUTH}admin_password" id="rpw"></td> |
|
25 |
<td><input type="submit" class="submit" name="action" value="[% 'Login' | $T8 %]"></td> |
|
26 |
</tr> |
|
27 |
<input type="hidden" name="action" value="login"> |
|
28 |
</table> |
|
29 |
|
|
30 |
</form> |
|
31 |
|
|
32 |
<p>[% 'kivitendo Homepage' | $T8 %]: <a href="http://kivitendo.de" target="_blank" title="[% 'kivitendo Homepage' | $T8 %]">http://kivitendo.de</a></p> |
|
33 |
|
|
34 |
<p><a href="controller.pl?action=LoginScreen/user_login" target="_top">[%- LxERP.t8('Back to the login page') %]</a></p> |
|
35 |
|
|
36 |
</div> |
|
37 |
|
|
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"><img src="image/kivitendo.png" border="0"></a> |
|
9 |
<h1>[% 'kivitendo administration' | $T8 %] [% version %]</h1> |
|
10 |
|
|
11 |
[% IF error %] |
|
12 |
<p><span class="message_error_login">[% error %]</span></p> |
|
13 |
[% END %] |
|
14 |
|
|
15 |
<p> |
|
16 |
|
|
17 |
<form method="post" action="admin.pl"> |
|
18 |
|
|
19 |
<table width="100%"> |
|
20 |
<tr> |
|
21 |
<td align="center"> |
|
22 |
<table> |
|
23 |
<tr> |
|
24 |
<th align="right">[% 'Password' | $T8 %]</th> |
|
25 |
<td><input class="login" type="password" name="{AUTH}admin_password" id="admin_password" size="30" tabindex="1"></td> |
|
26 |
</tr> |
|
27 |
</table> |
|
28 |
|
|
29 |
<br> |
|
30 |
<input type="submit" value="[% 'Login' | $T8 %]" tabindex="2"> |
|
31 |
|
|
32 |
</td> |
|
33 |
</tr> |
|
34 |
</table> |
|
35 |
|
|
36 |
<input type="hidden" name="action" value="login"> |
|
37 |
</form> |
|
38 |
|
|
39 |
</td> |
|
40 |
</tr> |
|
41 |
</table> |
|
42 |
|
|
43 |
<p> |
|
44 |
<a href="controller.pl?action=LoginScreen/user_login" target="_top">[%- LxERP.t8('User login') %]</a> |
|
45 |
| |
|
46 |
<a href="doc/kivitendo-Dokumentation.pdf" target="_top">[%- LxERP.t8('Documentation') %]</a> |
|
47 |
</p> |
|
48 |
|
|
49 |
<script type='text/javascript'> |
|
50 |
$('#admin_password').focus(); |
|
51 |
</script> |
Auch abrufbar als: Unified diff
Admin-Login-Maske an User-Login-Maske angepasst; Farbgebung für h1-Überschriften rot zur Unterscheidung