File size: 1.58Kb
<?php
$title = 'Настройки';
require_once '../system/fun.php';
require_once '../system/head.php';
if(!isset($user['id'])) {
echo '<div class="menu">Вход в раздел запрещен так как вы не зарегистрированы </div>';
require_once '../system/foot.php';
exit();
}
switch ($_GET['section']) {
default:
echo '<div class="title">Настройки</div>';
echo '<div class="menu"><img src="/style/img/podme.png"> <a href="/ava">Смена аватара</a></div>';
echo '<div class="menu"><img src="/style/img/podme.png"> <a href="?section=password">Смена пароля</a></div>
<div class="menu"><img src="/style/img/podme.png"> <a href="?section=exit">Выход</a></div>
</div>';
break;
case 'password':
if ($_REQUEST['ok']) {
if ($_POST['pass']) {
$pass = check($_POST['pass']);
mysql_query("UPDATE `users` SET `pass` = '".md5(md5($pass))."' WHERE `id` = '$user[id]'");
header('location: auth.php');
} else {
echo '<div class="title">Настройки</div>';
echo '<div class="menu">Вы не заполнили поле!<br /><a href="section=password">Вернуться</a></div>';
pages('?section=password');
}
} else {
echo '<div class="title">Смена пароля</div><div class="menu">
<form action="?section=password&ok=1" method="post">
Новый пароль:<br /><input name="pass" type="password" maxlength="20" /><br />
<input name="submit" type="submit" value="Сменить" />
</form></div>';
}
break;
}
require_once '../system/foot.php';
?>