v1.0
This commit is contained in:
parent
ec67ffa978
commit
4568a06f65
3 changed files with 11 additions and 3 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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: /');
|
||||
?>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Reference in a new issue