0
0

Updated the login page with a new cool template.

Source template from https://bootsnipp.com/snippets/z8aQr.
This commit is contained in:
Bryan Pedini
2019-03-18 11:23:48 +01:00
parent 81134c90e6
commit 7b5a149477
6 changed files with 195 additions and 108 deletions

5
lib/php/logout.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
$_SESSION = array ( );
session_destroy ( );
header ( "Location: " . substr ( $_SERVER [ 'SCRIPT_NAME' ], 0, -10 ) . "/" );
?>