d189d8154563c9c3f64bdb175d6d957d15ac3ce4
Bernd Wurst 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) 
Bernd Wurst Lizenzinfos in eigenes Modu...

Bernd Wurst authored 10 years ago

5) Written 2008-2014 by schokokeks.org Hosting, namely
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

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 
Hanno Böck URLs von http nach https

Hanno Böck authored 7 years ago

12) https://creativecommons.org/publicdomain/zero/1.0/
Bernd Wurst Added license tags for CC0,...

Bernd Wurst authored 12 years ago

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"?>
bernd Umstellung auf Theme-Suppor...

bernd authored 13 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 $THEME_PATH; ?>style.css" type="text/css" media="screen" title="Normal" />
30) <link rel="shortcut icon" href="<?php echo $THEME_PATH; ?>favicon.ico" type="image/x-icon" />
31) <?php echo $html_header; ?>
32) </head>
33) 
bernd Username-Feld beim Login fo...

bernd authored 12 years ago

34) <body onload="javascript:document.getElementById('username').focus();">
bernd Umstellung auf Theme-Suppor...

bernd authored 13 years ago

35) <div><a href="#content" style="display: none;">Zum Inhalt</a></div>
36) 
37) <div class="menu">
38) <a href="<?php echo $BASE_PATH; ?>"><img src="<?php echo $THEME_PATH; ?>images/schokokeks.png" width="190" height="141" alt="schokokeks.org Hosting" /></a>
39) 
40) <?php echo $menu; ?>
41) 
42) <?php echo $userinfo; ?>
43) 
44) </div>
45) 
46) <div class="content">
47) <a id="content" style="display: none"> </a>
48) 
49) <?php
50) if ($messages) {
51)   echo $messages;
52) }
53) ?>
54) 
Bernd Wurst Neues Layout der Rechnungen...

Bernd Wurst authored 9 years ago

55) <h3 class="headline">schokokeks.org Hosting Webinterface</h3>
Hanno Böck URLs von http nach https

Hanno Böck authored 7 years ago

56) <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="https://schokokeks.org">öffentliche Seite</a>.</p>
bernd Umstellung auf Theme-Suppor...

bernd authored 13 years ago

57) <form action="" method="post">
Bernd Wurst Ermögliche Kunden sich eine...

Bernd Wurst authored 10 years ago

58) <p><label for="username" class="login_label">Benutzername oder E-Mail-Adresse:</label> <input type="text" id="username" name="webinterface_username" size="30" /></p>
bernd Merge des Subuser-Branches:...

bernd authored 12 years ago

59) <p><label for="password" class="login_label">Passwort:</label> <input type="password" id="password" name="webinterface_password" size="30" /></p>
bernd Umstellung auf Theme-Suppor...

bernd authored 13 years ago

60) <p><span class="login_label">&#160;</span> <input type="submit" value="Anmelden" /></p>
61) </form>
Bernd Wurst Ermögliche Kunden sich eine...

Bernd Wurst authored 10 years ago

62) <p>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>
Bernd Wurst Entferne Passwort-Reset-Fun...

Bernd Wurst authored 10 years ago

63) <p>Sollten Sie Ihr Kunden-Passwort nicht mehr kennen, wenden Sie sich bitte an den Support. Passwörter für E-Mail-Konten kann der Eigentümer des Benutzeraccounts neu setzen.</p>
64) <?php /* <p><a href="lost_password">Sollten Sie Ihr Kunden-Passwort nicht mehr kennen, klicken Sie bitte hier.</a> Passwörter für E-Mail-Konten kann der Eigentümer des Benutzeraccounts neu setzen.</p> */ ?>
bernd Umstellung auf Theme-Suppor...

bernd authored 13 years ago

65) 
Bernd Wurst Login-Seite geändert, so da...

Bernd Wurst authored 10 years ago

66) <p><em><a href="../../certlogin/?destination=go/<?php echo $go; ?>"  >Mit einem Client-Zertifikat anmelden</a></em> (<a href="../../go/index/certinfo"  >Wie geht das?</a>)</p>
bernd Umstellung auf Theme-Suppor...

bernd authored 13 years ago

67) 
68) 
Bernd Wurst Funktion für Fußnoten einge...

Bernd Wurst authored 6 years ago

69) <?php if ($footnotes) {
70)     echo '<div class="footnotes">';
71)     foreach ($footnotes as $num => $explaination) {
72)        echo str_repeat('*', $num+1).': '.$explaination;
73)     }
74)     echo '</div>';
75) } ?>
bernd Umstellung auf Theme-Suppor...

bernd authored 13 years ago

76) </div>
77) 
78) <div class="foot">
Hanno Böck URLs von http nach https

Hanno Böck authored 7 years ago

79) <p>Sollten Sie auf dieser Administrations-Oberfläche ein Problem entdecken oder Hilfe benötigen, schreiben Sie bitte eine einfache eMail an <a href="mailto:root@schokokeks.org">root@schokokeks.org</a>. Unser <a href="https://schokokeks.org/kontakt">Impressum</a> finden Sie auf der <a href="https://schokokeks.org/">öffentlichen Seite</a>. Lizenzinformationen zu diesem Webinterface und verwendeten Rechten finden Sie <a href="../../images/about.php">indem Sie hier klicken</a>.</p>