Changed admin path's and page paths to absolute.

This commit is contained in:
2023-05-27 19:40:40 -05:00
parent b871daf30e
commit a715d95da7
4 changed files with 13 additions and 10 deletions

View File

@@ -10,13 +10,13 @@ $db = new SQLite3("../webcron.db");
-->
<html>
<head>
<link rel="stylesheet" href="css/main.css">
<script src="main.js"> </script>
<link rel="stylesheet" href="/css/main.css">
<script src="/js/main.js"> </script>
<title>Overview</title>
</head>
<body>
<nav>
<a class='nav-button' href='index.php'>Log Management</a>
<a class='nav-button' href='/index.php'>Log Management</a>
<?php
$items = scandir(".");
foreach ($items as $item){
@@ -26,6 +26,7 @@ $db = new SQLite3("../webcron.db");
}
}
?>
<a class='nav-button' href='admin/index.php'>Administration</a>
</nav>
<div class="content_area bordered rounded_border">