1
0
mirror of https://github.com/JannikKoester/Tischverwaltung.git synced 2026-01-09 14:20:08 +01:00

neues Design

This commit is contained in:
JannikKoester
2020-08-17 16:44:21 +02:00
parent de8f5295ab
commit 90155483d8
21 changed files with 0 additions and 0 deletions

12
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");
}