From 4568a06f65cbd4c850c5b36e5d6934fda51d0786 Mon Sep 17 00:00:00 2001 From: MaKe_Univ3rs Date: Fri, 28 Apr 2017 23:58:28 +0200 Subject: [PATCH] v1.0 --- index.php | 2 +- login.php | 4 +++- style.css | 8 +++++++- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/index.php b/index.php index ec2bbb4..adfd962 100644 --- a/index.php +++ b/index.php @@ -32,7 +32,7 @@ if($conn->connect_error){ query($sql); $number = 1; diff --git a/login.php b/login.php index cb29633..601a8b6 100644 --- a/login.php +++ b/login.php @@ -18,7 +18,9 @@ unset ($_SESSION['status']); $_SESSION['user'] = $_POST['user']; } else { - $_SESSION['status'] = '

Benutzername oder Kennwort ist falsch

'; + $_SESSION['status'] = '
' . + '

Benutzername oder Kennwort ist falsch

' . + '
'; } header('Location: /'); ?> diff --git a/style.css b/style.css index 7bd16b1..49c17f6 100644 --- a/style.css +++ b/style.css @@ -17,7 +17,6 @@ table { border-collapse: collapse; width: 100%; border-bottom: 2px solid rgba(255,255,255, 1); - /*border-bottom: 3px solid blue;*/ } th { color: #DDDDDD; @@ -87,3 +86,10 @@ table.center { padding: 0; padding-top: 2; } + +.falsch { + color: white; + margin-left: 5px; + margin-top: 325px; + position: fixed; +}