12 lines
156 B
PHP
12 lines
156 B
PHP
<html>
|
|
<body>
|
|
<div class="login-box">
|
|
<?php
|
|
session_start();
|
|
session_destroy();
|
|
header("location:index.php");
|
|
?>
|
|
</div>
|
|
</body>
|
|
</html>
|