Fixing directory and required file issues

This commit is contained in:
Michał Gdula 2022-09-13 16:07:01 +00:00
parent 9ed36e2738
commit 1472692ed5
16 changed files with 51 additions and 119 deletions

View file

@ -2,7 +2,7 @@
<html>
<head>
<?php include "ui/header.php"; ?>
<?php require_once __DIR__."/ui/header.php"; ?>
<!-- Upload Script -->
<script>
@ -55,8 +55,8 @@
<body>
<?php
include "ui/required.php";
include "ui/nav.php";
require_once __DIR__."/ui/required.php";
require_once __DIR__."/ui/nav.php";
use App\Account;
$user_info = new Account();
@ -84,7 +84,7 @@
</form>
</div>
<?php include "ui/footer.php"; ?>
<?php require_once __DIR__."/ui/footer.php"; ?>
</body>
</html>