moar css & now with logout

This commit is contained in:
Thies Mueller
2021-01-08 17:31:11 +01:00
parent 7cfdade617
commit 4216c2afbf
3 changed files with 28 additions and 1 deletions

16
logout.php Normal file
View File

@@ -0,0 +1,16 @@
<html>
<head>
<title>Logout</title>
<meta http-equiv="refresh" content="3; URL=login.php">
</head>
<body>
<?php
session_start();
session_destroy();
echo "Logout. Session is now destroyed. Now lets go to the login page.";
?>
</body>
</html>