New admins pages

This commit is contained in:
2024-12-10 11:09:39 +01:00
parent 5ae6f24bbd
commit 4fa387e8af
6 changed files with 214 additions and 0 deletions

6
4-logout.php Normal file
View File

@@ -0,0 +1,6 @@
<?php
session_start(); /* Starts the session */
session_destroy(); /* Destroy started session */
header("location:admin.php"); /* Redirect to login page */
exit;