mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
30 lines
1009 B
HTML
30 lines
1009 B
HTML
<h2><?= trans('backend::lang.account.enter_login') ?></h2>
|
|
|
|
<?= Form::open() ?>
|
|
<input type="hidden" name="postback" value="1" />
|
|
|
|
<div class="form-elements" role="form">
|
|
<div class="form-group text-field horizontal-form october">
|
|
|
|
<input
|
|
type="text"
|
|
name="login"
|
|
value="<?= e(post('login')) ?>"
|
|
class="form-control width-2 icon user"
|
|
placeholder="<?= e(trans('backend::lang.account.login_placeholder')) ?>"
|
|
autocomplete="off"
|
|
maxlength="255" />
|
|
|
|
<button type="submit" class="btn btn-primary restore-button">
|
|
<?= e(trans('backend::lang.account.restore')) ?>
|
|
</button>
|
|
</div>
|
|
|
|
<p class="pull-right forgot-password">
|
|
<a href="<?= Backend::url('backend/auth') ?>" class="text-muted">
|
|
<?= trans('backend::lang.form.cancel') ?>
|
|
</a>
|
|
</p>
|
|
</div>
|
|
<?= Form::close() ?>
|