Восстановление пароля
This commit is contained in:
parent
9ec0f42e17
commit
45fc2f51b4
@ -21,6 +21,7 @@ if (isset($_POST['relogin'])) {
|
||||
$u = User::start();
|
||||
|
||||
$usr = Db::getRow('select * from users where login =?', [$_POST['relogin']]);
|
||||
|
||||
if (!isset($usr['id'])) {
|
||||
$error = 'Логин "' . htmlspecialchars($_POST['relogin'], null) . '" не найден в базе.';
|
||||
} else {
|
||||
@ -58,9 +59,11 @@ if (isset($_POST['relogin'])) {
|
||||
$txt .= 'Отвечать на данное письмо не нужно.<br><br>';
|
||||
$txt .= 'С уважением,<br>';
|
||||
$txt .= 'Администрация Бойцовского Клуба';
|
||||
$mail = Core\Mail::send($usr['mail'], $txt, $title);
|
||||
|
||||
if ($mail === 1) {
|
||||
$mail = mail($usr['mail'], $title, $txt);
|
||||
//$mail = Core\Mail::send($usr['mail'], $txt, $title);
|
||||
|
||||
if ($mail) {
|
||||
Db::sql(
|
||||
'update users set securetime = unix_timestamp(), allLock = unix_timestamp(), pass = ? where id = ?',
|
||||
[password_hash($newPassword, PASSWORD_DEFAULT), $usr['id']]
|
||||
|
Loading…
Reference in New Issue
Block a user