2020-10-01 08:46:35 +00:00
|
|
|
|
<?php
|
2021-08-27 15:55:18 +00:00
|
|
|
|
if(session_status() !== PHP_SESSION_ACTIVE) {
|
|
|
|
|
session_start();
|
|
|
|
|
}
|
2020-10-01 08:53:48 +00:00
|
|
|
|
if ($_SESSION['uid']) {
|
|
|
|
|
header('Location: fight.php');
|
|
|
|
|
exit;
|
|
|
|
|
}
|
2022-08-09 19:57:43 +00:00
|
|
|
|
require_once 'views/index.html';
|