Initial commit

This commit is contained in:
Gitea
2020-01-31 06:17:49 -05:00
commit 0d798846b0
26 changed files with 1499 additions and 0 deletions

6
admin/logout.php Normal file
View File

@ -0,0 +1,6 @@
<?php
session_start();
session_unset();
session_destroy();
header("location:../index.php");
?>