Skip to content

Commit

Permalink
add the latest changes
Browse files Browse the repository at this point in the history
  • Loading branch information
GoldDominik893 committed Dec 27, 2023
1 parent d002768 commit 81d8906
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 0 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
28 changes: 28 additions & 0 deletions form/not-logged-in.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="../styles/main.css">
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body class="loginbg-color">
<ul>
<li><a href="../">LibreMonkey</a></li>
<?php
if ($_SESSION['logged_in'] == true) {
header('Location: ../');
exit(0);
} ?>
</ul>


<div class="loginbg">
<h1 class="center">Client Area</h1>
<div class="center-container2 whitebg">
401 Unauthorised - You may not fill out this form because you are not logged in.
</div><br>
</div>
</body>
</html>

0 comments on commit 81d8906

Please sign in to comment.