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; +}