add login, logout, ticket processing, and QR scanner functionality

This commit is contained in:
vista-man
2025-04-03 12:05:14 +02:00
parent 66846647b0
commit 3a447d9f0e
4 changed files with 107 additions and 0 deletions

7
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();
?>