Add autocomplete values to login form and remove xhtml style tag endings
Hanno Böck

Hanno Böck commited on 2024-01-25 13:15:43
Zeige 2 geänderte Dateien mit 9 Einfügungen und 9 Löschungen.

... ...
@@ -23,8 +23,8 @@ if ($title) {
23 23
     echo "<title>Administration</title>";
24 24
 }
25 25
 ?>
26
-<link rel="stylesheet" href="<?php echo $THEME_PATH; ?>style.css" type="text/css" media="screen" title="Normal" />
27
-<link rel="shortcut icon" href="<?php echo $THEME_PATH; ?>favicon.ico" type="image/x-icon" />
26
+<link rel="stylesheet" href="<?php echo $THEME_PATH; ?>style.css" type="text/css" media="screen" title="Normal">
27
+<link rel="shortcut icon" href="<?php echo $THEME_PATH; ?>favicon.ico" type="image/x-icon">
28 28
 <?php echo $html_header; ?>
29 29
 <script src="<?php echo $THEME_PATH; ?>script.js"></script>
30 30
 </head>
... ...
@@ -33,7 +33,7 @@ if ($title) {
33 33
 <div><a href="#content" style="display: none;">Zum Inhalt</a></div>
34 34
 
35 35
 <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>
36
-<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>
36
+<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>
37 37
 <div class="sidebar" id="sidebar">
38 38
 
39 39
 <div class="menu">
... ...
@@ -56,9 +56,9 @@ if ($messages) {
56 56
 <h3 class="headline">schokokeks.org Hosting Webinterface</h3>
57 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="https://schokokeks.org">öffentliche Seite</a>.</p>
58 58
 <form method="post">
59
-<p class="login_field"><label for="username" class="login_label">Benutzername oder E-Mail-Adresse:</label> <input type="text" id="username" name="webinterface_username" size="30" /></p>
60
-<p class="login_field"><label for="password" class="login_label">Passwort:</label> <input type="password" id="password" name="webinterface_password" size="30" /> &nbsp; (<a href="<?php echo $BASE_PATH; ?>go/index/lost_password">Passwort vergessen?</a>)</p>
61
-<p><span class="login_label">&#160;</span> <input type="submit" value="Anmelden" /></p>
59
+<p class="login_field"><label for="username" class="login_label">Benutzername oder E-Mail-Adresse:</label> <input type="text" id="username" name="webinterface_username" size="30" autocomplete="username"></p>
60
+<p class="login_field"><label for="password" class="login_label">Passwort:</label> <input type="password" id="password" name="webinterface_password" size="30" autocomplete="current-password"> &nbsp; (<a href="<?php echo $BASE_PATH; ?>go/index/lost_password">Passwort vergessen?</a>)</p>
61
+<p><span class="login_label">&#160;</span> <input type="submit" value="Anmelden"></p>
62 62
 </form>
63 63
 <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>
64 64
 <?php /* <p>Sollten Sie Ihr Benutzer-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> */ ?>
... ...
@@ -23,9 +23,9 @@ if ($title) {
23 23
     echo "<title>Administration</title>";
24 24
 }
25 25
 ?>
26
-<link rel="shortcut icon" href="<?php echo $THEME_PATH; ?>favicon.ico" type="image/x-icon" />
26
+<link rel="shortcut icon" href="<?php echo $THEME_PATH; ?>favicon.ico" type="image/x-icon">
27 27
 <?php echo $html_header; ?>
28
-<link rel="stylesheet" href="<?php echo $THEME_PATH; ?>style.css" type="text/css" media="screen" title="Normal" />
28
+<link rel="stylesheet" href="<?php echo $THEME_PATH; ?>style.css" type="text/css" media="screen" title="Normal">
29 29
 <script src="<?php echo $THEME_PATH; ?>script.js"></script>
30 30
 </head>
31 31
 
... ...
@@ -33,7 +33,7 @@ if ($title) {
33 33
 <div><a href="#content" style="display: none;">Zum Inhalt</a></div>
34 34
 
35 35
 <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>
36
-<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>
36
+<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>
37 37
 <div class="sidebar" id="sidebar">
38 38
 
39 39
 <div class="menu">
40 40