Файл: admin386/admin_module.php
Строк: 17
<?php
global $pg, $pass;
if(isset($_GET['out'])) {
unset($_SESSION['adm_pass']);
header('Location: ./');
exit;
}
if(isset($_GET['setkey'])) {
if(preg_match('/[a-z0-9]/i',$_POST['pass'])) {
if($_POST['pass']!=$pass) {
echo 'Неверный пароль!';
}
else
{
$_SESSION['adm_pass']=$pass;
header('Location: ./');
}
}
else
{
echo 'Неверный пароль!';
}
exit;
}
if(empty($_SESSION['adm_pass'])) {
if(!isset($index)) {
header('Location: ./');
exit;
}
$pg->title('Вход');
$pg->head();
echo '<div class="main_menu">
<div class="menu_razd">Вход</div>
<form action="./?setkey" method="post">
<font color="#fff">Пароль:</font><br/>
<input type="password" name="pass"><br/>
<input type="submit" value="Войти!">
</form>
</div>
<div class="list">
';
$pg->foot();
exit;
}
if($_SESSION['adm_pass']!=$pass) {
unset($_SESSION['adm_pass']);
header('Location: ./');
exit;
}
?>