77 lines
3.5 KiB
PHP
77 lines
3.5 KiB
PHP
<?= $this->extend('templates/base') ?>
|
|
|
|
<!-- title -->
|
|
<?= $this->section('title') ?>Login<?= $this->endSection() ?>
|
|
|
|
<!-- content -->
|
|
<?= $this->section('content') ?>
|
|
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-6 offset-sm-3">
|
|
|
|
<div class="card">
|
|
<h2 class="card-header"><?= lang('Auth.loginTitle') ?></h2>
|
|
<div class="card-body">
|
|
|
|
<?= view('Myth\Auth\Views\_message_block') ?>
|
|
|
|
<form action="<?= route_to('login') ?>" method="post">
|
|
<?= csrf_field() ?>
|
|
|
|
<?php if ($config->validFields === ['email']) : ?>
|
|
<div class="form-group">
|
|
<label for="login"><?= lang('Auth.email') ?></label>
|
|
<input type="email" class="form-control <?php if (session('errors.login')) : ?>is-invalid<?php endif ?>" name="login" placeholder="<?= lang('Auth.email') ?>">
|
|
<div class="invalid-feedback">
|
|
<?= session('errors.login') ?>
|
|
</div>
|
|
</div>
|
|
<?php else : ?>
|
|
<div class="form-group">
|
|
<label for="login"><?= lang('Auth.emailOrUsername') ?></label>
|
|
<input type="text" class="form-control <?php if (session('errors.login')) : ?>is-invalid<?php endif ?>" name="login" placeholder="<?= lang('Auth.emailOrUsername') ?>">
|
|
<div class="invalid-feedback">
|
|
<?= session('errors.login') ?>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<div class="form-group">
|
|
<label for="password"><?= lang('Auth.password') ?></label>
|
|
<input type="password" name="password" class="form-control <?php if (session('errors.password')) : ?>is-invalid<?php endif ?>" placeholder="<?= lang('Auth.password') ?>">
|
|
<div class="invalid-feedback">
|
|
<?= session('errors.password') ?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php if ($config->allowRemembering) : ?>
|
|
<div class="form-check">
|
|
<label class="form-check-label">
|
|
<input type="checkbox" name="remember" class="form-check-input" <?php if (old('remember')) : ?> checked <?php endif ?>>
|
|
<?= lang('Auth.rememberMe') ?>
|
|
</label>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<br>
|
|
|
|
<button type="submit" class="btn btn-primary btn-block"><?= lang('Auth.loginAction') ?></button>
|
|
</form>
|
|
|
|
<hr>
|
|
|
|
<?php if ($config->allowRegistration) : ?>
|
|
<p><a href="<?= route_to('register') ?>"><?= lang('Auth.needAnAccount') ?></a></p>
|
|
<?php endif; ?>
|
|
<?php if ($config->activeResetter) : ?>
|
|
<p><a href="<?= route_to('forgot') ?>"><?= lang('Auth.forgotYourPassword') ?></a></p>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?= $this->endSection() ?>
|