Responsive Dashboard hinzugefügt

This commit is contained in:
aschwarz
2023-03-22 17:15:39 +01:00
parent 1b02e82b86
commit e098969478
72 changed files with 26160 additions and 182 deletions

6
dashboard/logout.php Normal file
View File

@ -0,0 +1,6 @@
<?php
session_start(); //to ensure you are using same session
session_destroy(); //destroy the session
header("location:index.php"); //to redirect back to "index.php" after logging out
exit();
?>