1
0
mirror of https://github.com/JannikKoester/Tischverwaltung.git synced 2026-01-11 07:10:08 +01:00

newdesign

This commit is contained in:
JannikKoester
2020-08-17 16:41:58 +02:00
parent 102ba709d3
commit de8f5295ab
26 changed files with 2674 additions and 255 deletions

12
newDesign/logout.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
require 'settings.php';
session_start();
if(isset($_POST['logoutBtn'])){
session_destroy();
header("location:index.php");
}
else
{
header("location:index.php");
}