17 lines
421 B
PHP
17 lines
421 B
PHP
|
<?php
|
||
|
require_once('include/global.php');
|
||
|
|
||
|
if(!$authenticated) {
|
||
|
$smarty->assign('recaptcha_html', recaptcha_get_html($config['recaptcha_publickey']));
|
||
|
$smarty->display('login.tpl');
|
||
|
exit;
|
||
|
}
|
||
|
|
||
|
$action = isset($_GET['action']) ? $_GET['action'] : 'list';
|
||
|
$subaction = isset($_GET['subaction']) ? $_GET['subaction'] : 'none';
|
||
|
|
||
|
switch($action) {
|
||
|
case 'list':
|
||
|
$smarty->display('ban_list.tpl');
|
||
|
break;
|
||
|
}
|