874472f64c02e211a3eed33c645483fc26427fe6
Bernd Wurst Login am Webiterface mit Go...

Bernd Wurst authored 11 years ago

themes/default/page-googleauth-login.tpl.php   1) <?php
themes/default/page-googleauth-login.tpl.php   2) /*
themes/default/page-googleauth-login.tpl.php   3) This file belongs to the Webinterface of schokokeks.org Hosting
themes/default/page-googleauth-login.tpl.php   4) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 1 year ago

themes/default/page-webmailtotp-login.tpl.php  5) Written by schokokeks.org Hosting, namely
Bernd Wurst Login am Webiterface mit Go...

Bernd Wurst authored 11 years ago

themes/default/page-googleauth-login.tpl.php   6)   Bernd Wurst <bernd@schokokeks.org>
themes/default/page-googleauth-login.tpl.php   7)   Hanno Böck <hanno@schokokeks.org>
themes/default/page-googleauth-login.tpl.php   8) 
Hanno Böck Change license from CC0 to...

Hanno Böck authored 1 year ago

themes/default/page-webmailtotp-login.tpl.php  9) This code is published under a 0BSD license.
Bernd Wurst Login am Webiterface mit Go...

Bernd Wurst authored 11 years ago

themes/default/page-googleauth-login.tpl.php  10) 
themes/default/page-googleauth-login.tpl.php  11) 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.
themes/default/page-googleauth-login.tpl.php  12) */
Bernd Wurst Deprecation-Fehler bei TOTP...

Bernd Wurst authored 6 months ago

themes/default/page-webmailtotp-login.tpl.php 13) ?><!DOCTYPE html>
themes/default/page-webmailtotp-login.tpl.php 14) <html lang="de">
Hanno Böck add charset to html so we c...

Hanno Böck authored 4 months ago

themes/default/page-totp-login.tpl.php        15) <head><meta charset="UTF-8">
Bernd Wurst Login am Webiterface mit Go...

Bernd Wurst authored 11 years ago

themes/default/page-googleauth-login.tpl.php  16) 
Bernd Wurst Deprecation-Fehler bei TOTP...

Bernd Wurst authored 6 months ago

themes/default/page-webmailtotp-login.tpl.php 17) <meta name="viewport" content="width=device-width, initial-scale=1.0">
themes/default/page-webmailtotp-login.tpl.php 18) 
Hanno Update codingstyle accordin...

Hanno authored 5 years ago

themes/default/page-webmailtotp-login.tpl.php 19) <?php
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

themes/default/page-webmailtotp-login.tpl.php 20) if ($title) {
themes/default/page-webmailtotp-login.tpl.php 21)     echo "<title>$title - Administration</title>";
themes/default/page-webmailtotp-login.tpl.php 22) } else {
themes/default/page-webmailtotp-login.tpl.php 23)     echo "<title>Administration</title>";
themes/default/page-webmailtotp-login.tpl.php 24) }
Bernd Wurst Login am Webiterface mit Go...

Bernd Wurst authored 11 years ago

themes/default/page-googleauth-login.tpl.php  25) ?>
Hanno Böck remove obsolete type attrib...

Hanno Böck authored 4 months ago

themes/default/page-totp-login.tpl.php        26) <link rel="stylesheet" href="<?php echo $THEME_PATH; ?>style.css" media="screen" title="Normal">
themes/default/page-totp-login.tpl.php        27) <link rel="icon" href="<?php echo $THEME_PATH; ?>favicon.ico">
Bernd Wurst Login am Webiterface mit Go...

Bernd Wurst authored 11 years ago

themes/default/page-googleauth-login.tpl.php  28) <?php echo $html_header; ?>
themes/default/page-googleauth-login.tpl.php  29) </head>
themes/default/page-googleauth-login.tpl.php  30) 
themes/default/page-googleauth-login.tpl.php  31) <body onload="javascript:document.getElementById('code').focus();">
themes/default/page-googleauth-login.tpl.php  32) <div><a href="#content" style="display: none;">Zum Inhalt</a></div>
themes/default/page-googleauth-login.tpl.php  33) 
Bernd Wurst Deprecation-Fehler bei TOTP...

Bernd Wurst authored 6 months ago

themes/default/page-webmailtotp-login.tpl.php 34) <a href="javascript:void(0);" class="menuicon" id="showmenu" onclick="showMenu()"><img src="<?php echo $THEME_PATH; ?>images/bars.svg" alt=""><span id="showmenutext">Menü</span></a>
Hanno Böck remove obsolete type attrib...

Hanno Böck authored 4 months ago

themes/default/page-totp-login.tpl.php        35) <a href="<?php echo $BASE_PATH; ?>" class="logo"><img src="<?php echo $THEME_PATH; ?>images/schokokeks.png" width="190" height="141" alt="schokokeks.org Hosting"></a>
Bernd Wurst Deprecation-Fehler bei TOTP...

Bernd Wurst authored 6 months ago

themes/default/page-webmailtotp-login.tpl.php 36) <div class="sidebar" id="sidebar">
Bernd Wurst Login am Webiterface mit Go...

Bernd Wurst authored 11 years ago

themes/default/page-googleauth-login.tpl.php  37) 
Bernd Wurst Deprecation-Fehler bei TOTP...

Bernd Wurst authored 6 months ago

themes/default/page-webmailtotp-login.tpl.php 38) <div class="menu">
Bernd Wurst Login am Webiterface mit Go...

Bernd Wurst authored 11 years ago

themes/default/page-googleauth-login.tpl.php  39) <?php echo $menu; ?>
Bernd Wurst Deprecation-Fehler bei TOTP...

Bernd Wurst authored 6 months ago

themes/default/page-webmailtotp-login.tpl.php 40) </div>
themes/default/page-webmailtotp-login.tpl.php 41) <div class="userinfo">
Bernd Wurst Login am Webiterface mit Go...

Bernd Wurst authored 11 years ago

themes/default/page-googleauth-login.tpl.php  42) <?php echo $userinfo; ?>
Bernd Wurst Deprecation-Fehler bei TOTP...

Bernd Wurst authored 6 months ago

themes/default/page-webmailtotp-login.tpl.php 43) </div>
Bernd Wurst Login am Webiterface mit Go...

Bernd Wurst authored 11 years ago

themes/default/page-googleauth-login.tpl.php  44) </div>
themes/default/page-googleauth-login.tpl.php  45) 
themes/default/page-googleauth-login.tpl.php  46) <div class="content">
themes/default/page-googleauth-login.tpl.php  47) <a id="content" style="display: none"> </a>
themes/default/page-googleauth-login.tpl.php  48) 
themes/default/page-googleauth-login.tpl.php  49) <?php
themes/default/page-googleauth-login.tpl.php  50) if ($messages) {
Hanno Fix coding style with php-c...

Hanno authored 5 years ago

themes/default/page-webmailtotp-login.tpl.php 51)     echo $messages;
Bernd Wurst Login am Webiterface mit Go...

Bernd Wurst authored 11 years ago

themes/default/page-googleauth-login.tpl.php  52) }
themes/default/page-googleauth-login.tpl.php  53) ?>
themes/default/page-googleauth-login.tpl.php  54) 
Bernd Wurst Neues Layout der Rechnungen...

Bernd Wurst authored 9 years ago

themes/default/page-webmailtotp-login.tpl.php 55) <h3 class="headline">Sicherheits-Code</h3>
Bernd Wurst Umbenennung Google-Auth nac...

Bernd Wurst authored 11 years ago

themes/default/page-webmailtotp-login.tpl.php 56) <p>Ihr Zugang ist mit Zwei-Faktor-Anmeldung geschützt. Sie müssen daher jetzt noch den aktuellsten Code Ihres TOTP-Geräts eingeben.</p>
Hanno Böck Fehler von W3C validator fixen

Hanno Böck authored 4 years ago

themes/default/page-webmailtotp-login.tpl.php 57) <form method="post">
Hanno Böck remove obsolete type attrib...

Hanno Böck authored 4 months ago

themes/default/page-totp-login.tpl.php        58) <p><label for="code" class="login_label">TOTP-Authenticator-Code:</label> <input type="text" id="code" name="webinterface_totpcode" size="20"></p>
themes/default/page-totp-login.tpl.php        59) <p><span class="login_label">&#160;</span> <input type="submit" value="Prüfen"></p>
Bernd Wurst Login am Webiterface mit Go...

Bernd Wurst authored 11 years ago

themes/default/page-googleauth-login.tpl.php  60) </form>
themes/default/page-googleauth-login.tpl.php  61) 
themes/default/page-googleauth-login.tpl.php  62) </div>
themes/default/page-googleauth-login.tpl.php  63) 
themes/default/page-googleauth-login.tpl.php  64) <div class="foot">
Hanno Böck Rechtschreibung, typos

Hanno Böck authored 1 year ago

themes/default/page-webmailtotp-login.tpl.php 65) <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="<?php echo $BASE_PATH; ?>go/about/about">indem Sie hier klicken</a>.</p>