mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-09 06:35:42 +12:00
24 lines
No EOL
533 B
PHP
24 lines
No EOL
533 B
PHP
<?php
|
|
include("../../config.php");
|
|
|
|
session_start(['cookie_lifetime' => 86400]);
|
|
$_SESSION["A_LOGGED_IN"] = "NO";
|
|
include("../header.php");
|
|
?>
|
|
|
|
|
|
<CENTER>
|
|
<FONT FACE=Verdana,arial SIZE=-1>
|
|
<BR><B>HISP - Super Admin Login</B><BR>
|
|
<BR> This page requires a password, please enter it below:</BR>
|
|
<BR> <FORM METHOD=POST ACTION=/web/admin/login.php>
|
|
<INPUT TYPE=PASSWORD SIZE=30 NAME=PASS></INPUT>
|
|
<INPUT TYPE=SUBMIT VALUE=LOGIN>
|
|
</FORM>
|
|
</BR>
|
|
<BR><B>No idea? check config.php of game-site/</B></BR>
|
|
|
|
|
|
<?php
|
|
include("../footer.php");
|
|
?>
|