17 lines
179 B
PHP
Raw Normal View History

2021-12-27 07:01:20 +00:00
<?php
session_start();
unset($_SESSION['uid']);
?>
<!DOCTYPE HTML>
<html>
<head>
2021-12-27 08:07:02 +00:00
<meta http-equiv="refresh" content="1; /">
2021-12-27 07:01:20 +00:00
</head>
<body>
<p>Signed out.</p>
</body>
</html>