Файл: public/index.php
Строк: 20
<?php
# Author: Oleg Kulaga (Cyber_Shot);
# Package: WGame Engine;
# Version: 0.1;
define("APP", true);
# Connect config;
require_once ('../app/config.php');
# Check user auth;
user_auth();
$module = 'index';
view_header(app_getConfig($module, 'title'));
if (app_getConfig($module, 'close') == 1)
{
?>
<div class="block" style="text-align: center;">
Данный модуль закрыт администратором.
</div>
<?php
}
else
{
?>
<div class="block">
<a href="<?=DS.HOME.DS?>wgame.auth.signUp" class="touchLink"> Начать игру</a>
<a href="<?=DS.HOME.DS?>wgame.auth.signIn" class="touchLink"> Войти</a>
</div>
<?php
}
view_footer();