Файл: ad-min/index.php
Строк: 34
<?php
require_once "../sys/func.php";
if (isset($_POST['auth'])) $success = authAdmin($_POST['login'], $_POST['pass']);
if (isset($_GET['exit']) && isset($_SESSION['ad_min'])) {
unset($_SESSION['ad_min']);
header('Location: index.php');
exit;
}
if (!isset($_SESSION['ad_min'])) {
$title = 'Авторизация';
require_once "../sys/head.php";
if (isset($success)) echo $success;
echo '<div class="c"><center>
<form action="" method="POST">
Логин:<br/>
<input type="text" name="login"><br/>
Пароль:<br/>
<input type="password" name="pass"><br/>
<input type="submit" name="auth" value="Войти"><br/>
</form>
</center></div>';
require_once "../sys/foot.php";
exit;
}
$title = 'Админ-панел';
require_once "../sys/head.php";
echo '<a class="link" href="status.php"><img src="/images/recall.png" /> Упраление статусами</a>';
echo '<a class="link" href="category.php"><img src="/images/star.png" /> Упраление категориями</a>';
echo '<a class="link" href="ads.php"><img src="/images/sbeka.png" /> Упраление рекламой</a>';
echo '<a class="link" href="index.php?exit"><img src="/images/exit.png" /> Выход из админки</a>';
require_once "../sys/foot.php";
?>