Login-page angepasst
Bernd Wurst

Bernd Wurst commited on 2018-06-07 12:04:44
Zeige 2 geänderte Dateien mit 13 Einfügungen und 11 Löschungen.

... ...
@@ -157,8 +157,7 @@ div.confirmation p.buttons input {
157 157
 
158 158
 
159 159
 .login_label {
160
-        display: block;
161
-        float: left;
160
+        display: inline-block;
162 161
         width: 130px;
163 162
 }
164 163
 
... ...
@@ -13,13 +13,12 @@ https://creativecommons.org/publicdomain/zero/1.0/
13 13
 
14 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 15
 */
16
-?><?xml version="1.0" encoding="utf-8"?>
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">
16
+?><!DOCTYPE html>
17
+<html>
21 18
 <head>
22 19
 
20
+<meta name="viewport" content="width=device-width, initial-scale=1.0">
21
+
23 22
 <?php 
24 23
 if ($title)
25 24
 	echo "<title>$title - Administration</title>";
... ...
@@ -29,18 +28,22 @@ else
29 28
 <link rel="stylesheet" href="<?php echo $THEME_PATH; ?>style.css" type="text/css" media="screen" title="Normal" />
30 29
 <link rel="shortcut icon" href="<?php echo $THEME_PATH; ?>favicon.ico" type="image/x-icon" />
31 30
 <?php echo $html_header; ?>
31
+<script type="text/javascript" src="<?php echo $THEME_PATH; ?>script.js"></script>
32 32
 </head>
33 33
 
34 34
 <body onload="javascript:document.getElementById('username').focus();">
35 35
 <div><a href="#content" style="display: none;">Zum Inhalt</a></div>
36 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>
37
+<a href="javascript:void(0);" class="menuicon" id="showmenu" onclick="showMenu()"><img src="<?php echo $THEME_PATH; ?>images/bars.svg"><span id="showmenutext">Menü</span></a>
38
+<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>
39
+<div class="sidebar" id="sidebar">
39 40
 
41
+<div class="menu">
40 42
 <?php echo $menu; ?>
41
-
43
+</div>
44
+<div class="userinfo">
42 45
 <?php echo $userinfo; ?>
43
-
46
+</div>
44 47
 </div>
45 48
 
46 49
 <div class="content">
47 50