added auto redirect

This commit is contained in:
Thies Mueller
2021-01-08 20:47:35 +01:00
parent 21ad06603c
commit 4365f2b510
3 changed files with 4 additions and 4 deletions

View File

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