Refactor HTML and CSS file structure: update stylesheet paths, add new scripts, and enhance login functionality

This commit is contained in:
vista-man
2025-04-10 17:00:57 +02:00
parent 7c2d11591f
commit 15ce96681f
15 changed files with 66 additions and 43 deletions

7
php/logout.php Normal file
View File

@@ -0,0 +1,7 @@
<!-- filepath: c:\xampp\htdocs\Spik-en-span\logout.php -->
<?php
session_start();
session_destroy();
header("Location: employee-login.html");
exit();
?>