4
1
Fork 0
This commit is contained in:
MaKe_Univ3rs 2017-04-28 23:58:28 +02:00
parent ec67ffa978
commit 4568a06f65
3 changed files with 11 additions and 3 deletions

View file

@ -32,7 +32,7 @@ if($conn->connect_error){
</tr>
<?php
$sql = "SELECT * FROM cheaterlist ORDER BY addtime DESC;";
$sql = "SELECT * FROM cheaterliste ORDER BY addtime DESC;";
$result = $conn->query($sql);
$number = 1;

View file

@ -18,7 +18,9 @@
unset ($_SESSION['status']);
$_SESSION['user'] = $_POST['user'];
} else {
$_SESSION['status'] = '<h1>Benutzername oder Kennwort ist falsch</h1>';
$_SESSION['status'] = '<div class="falsch">' .
'<h1>Benutzername oder Kennwort ist falsch</h1>' .
'</div>';
}
header('Location: /');
?>

View file

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