Added license tags for CC0,...
Bernd Wurst authored 12 years ago
|
1) <?php
2) /*
3) This file belongs to the Webinterface of schokokeks.org Hosting
4)
5) Written 2008-2012 by schokokeks.org Hosting, namely
6) Bernd Wurst <bernd@schokokeks.org>
7) Hanno Böck <hanno@schokokeks.org>
8)
9) To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
10)
11) You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
12) http://creativecommons.org/publicdomain/zero/1.0/
13)
14) Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code.
15) */
16) ?><?xml version="1.0" encoding="utf-8"?>
|
Umstellung auf Theme-Suppor...
bernd authored 14 years ago
|
17) <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
18) "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
19)
20) <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">
21) <head>
22)
23) <?php
24) if ($title)
25) echo "<title>$title - Administration</title>";
26) else
27) echo "<title>Administration</title>";
28) ?>
29) <link rel="stylesheet" href="<?php echo $BASE_PATH; ?>css/default.css" type="text/css" media="screen" title="Normal" />
30) <link rel="stylesheet" href="<?php echo $THEME_PATH; ?>style.css" type="text/css" media="screen" title="Normal" />
31) <link rel="shortcut icon" href="<?php echo $THEME_PATH; ?>favicon.ico" type="image/x-icon" />
32) <?php echo $html_header; ?>
33) </head>
34)
|
Username-Feld beim Login fo...
bernd authored 13 years ago
|
35) <body onload="javascript:document.getElementById('username').focus();">
|
Umstellung auf Theme-Suppor...
bernd authored 14 years ago
|
36) <div><a href="#content" style="display: none;">Zum Inhalt</a></div>
37)
38) <div class="menu">
39) <a href="<?php echo $BASE_PATH; ?>"><img src="<?php echo $THEME_PATH; ?>images/schokokeks.png" width="190" height="141" alt="schokokeks.org Hosting" /></a>
40)
41) <?php echo $menu; ?>
42)
43) <?php echo $userinfo; ?>
44)
45) </div>
46)
47) <div class="content">
48) <a id="content" style="display: none"> </a>
49)
50) <?php
51) if ($messages) {
52) echo $messages;
53) }
54) ?>
55)
56) <h3>schokokeks.org Hosting Webinterface</h3>
57) <p>Auf dieser Seite können Sie diverse Einstellungen Ihres Accounts auf schokokeks.org Hosting festlegen. Sofern Sie noch kein Kunde von schokokeks.org Hosting sind, können Sie diese Seite nicht benutzen. Besuchen Sie in diesem Fall bitte unsere <a href="http://www.schokokeks.org">öffentliche Seite</a>.</p>
58) <form action="" method="post">
|
Merge des Subuser-Branches:...
bernd authored 12 years ago
|
59) <p><label for="username" class="login_label">Benutzername oder E-Mail-Adresse<sup>*</sup>:</label> <input type="text" id="username" name="webinterface_username" size="30" /></p>
60) <p><label for="password" class="login_label">Passwort:</label> <input type="password" id="password" name="webinterface_password" size="30" /></p>
|
Umstellung auf Theme-Suppor...
bernd authored 14 years ago
|
61) <p><span class="login_label"> </span> <input type="submit" value="Anmelden" /></p>
62) </form>
|
Text auf Login-Seite
bernd authored 13 years ago
|
63) <p><sup>*</sup> Sie können sich hier mit Ihrem System-Benutzernamen, Ihrer E-Mail-Adresse oder Ihrer Kundennummer (jeweils mit zugehörigem Passwort) anmelden. Je nach gewählten Daten erhalten Sie unterschiedliche Zugriffsrechte.</p>
|
Umstellung auf Theme-Suppor...
bernd authored 14 years ago
|
64) <p>Sollten Sie Ihr Passwort nicht mehr kennen, wenden Sie sich bitte unter Angabe Ihres Benutzernamens und/oder Ihrer Kundennummer an den Support. Passwörter für E-Mail-Konten kann der Eigentümer des Benutzeraccounts neu setzen.</p>
65)
|
Client-Cert-Login-URL von d...
bernd authored 12 years ago
|
66) <p><em><a href="../../certlogin/?destination=go/index/index" >Mit einem Client-Zertifikat anmelden</a></em> (<a href="../../go/index/certinfo" >Wie geht das?</a>)</p>
|