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

26 lines
1.0 KiB
Smarty
Raw Permalink 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>
<div class="well">
{if $error}
<div class="message_error">
{if $error == 'user_not_found'}
<span class="text-danger">Пользователь не найден</span>
{else}{$error}{/if}
</div>
{/if}
<form class="form form-horizontal" method="post">
<div class="form-group">
<label for="email" class="col-sm-6 control-label">Введите email, который вы указывали при регистрации</label>
<div class="col-sm-6"><input class="form-control" type="text" name="email" data-format="email" data-notice="Введите email" value="{$email|escape}" maxlength="255"/></div>
</div>
<input type="submit" class="btn btn-danger pull-right" name="login" value="Вспомнить">
</form>
</div>
{/if}