Files
AtomicOld/design/default/html/password_remind.tpl
2026-02-15 18:29:53 +03:00

22 lines
836 B
Smarty
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{* Письмо пользователю для восстановления пароля *}
{if $email_sent}
<h1>Вам отправлено письмо</h1>
<p>На {$email|escape} отправлено письмо для восстановления пароля.</p>
{else}
<h1>Напоминание пароля</h1>
{if $error}
<div class="message_error">
{if $error == 'user_not_found'}Пользователь не найден
{else}{$error}{/if}
</div>
{/if}
<form class="form" method="post">
<label>Введите email, который вы указывали при регистрации</label>
<input type="text" name="email" data-format="email" data-notice="Введите email" value="{$email|escape}" maxlength="255"/>
<input type="submit" class="button_submit" value="Вспомнить" />
</form>
{/if}