Skip to content
Snippets Groups Projects
Commit 6ab031c5 authored by Muhammad Haidar Akita Tresnadi's avatar Muhammad Haidar Akita Tresnadi
Browse files

Merge branch 'Haidar' into 'main'

fixing html Hall-of-Fame bug

See merge request if3110-2023-01-j/if-3110-2023-01-j!43
parents a3995a67 7f110990
No related merge requests found
......@@ -63,6 +63,12 @@ session_start();
<th>Level</th>
<th>Total Achievement</th>
<th>Total quest</th>
<?php
if (isset($_SESSION['isAdmin']) && $_SESSION['isAdmin'] === '1') {
echo '<th>Edit</th>';
echo '<th>Delete</th>';
}
?>
</tr>
</thead>
......
......@@ -2,7 +2,7 @@
session_start();
if (!isset($_SESSION['isAdmin']) || $_SESSION['isAdmin'] !== '1') {
header('Location: go+away+you+hackers');
header('Location: /error/403.php/?haha=go+away+you+hackers');
exit();
}
?>
......
body {
background-image: url('../img/basic-wallpaper5.jpeg');
text-align: center;
font-family: arial;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
}
.head-container {
text-align: center;
padding-top: 50px;
position: relative;
}
......@@ -70,10 +79,11 @@ option:hover {
.body-container {
/* background-image: url('../img/basic-wallpaper5.jpeg'); */
/* max-width: 800px; */
/* margin: 20px auto; */
padding: 20px;
background-color: #192e3a;
/* background-color: #192e3a; */
/* border: 1px solid #ccc;
border-radius: 5px; */
/* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
......@@ -103,7 +113,7 @@ th, td {
}
th {
background-color: #192e3a;
background-color: #1f1f1f;
color: #fff;
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment