add public design files
This commit is contained in:
22
design/default/html/login.tpl
Normal file
22
design/default/html/login.tpl
Normal file
@@ -0,0 +1,22 @@
|
||||
{* Страница входа пользователя *}
|
||||
{$meta_title = "Вход" scope=parent}
|
||||
|
||||
<h1>Вход</h1>
|
||||
|
||||
{if $error}
|
||||
<div class="message_error">
|
||||
{if $error == 'login_incorrect'}Неверный логин или пароль
|
||||
{elseif $error == 'user_disabled'}Ваш аккаунт еще не активирован.
|
||||
{else}{$error}{/if}
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
<form class="form login_form" method="post">
|
||||
<label>Email</label>
|
||||
<input type="text" name="email" data-format="email" data-notice="Введите email" value="{$email|escape}" maxlength="255" />
|
||||
|
||||
<label>Пароль (<a href="user/password_remind">напомнить</a>)</label>
|
||||
<input type="password" name="password" data-format=".+" data-notice="Введите пароль" value="" />
|
||||
|
||||
<input type="submit" class="button" name="login" value="Войти">
|
||||
</form>
|
||||
Reference in New Issue
Block a user