73 lines
3.3 KiB
PHP
73 lines
3.3 KiB
PHP
<?= $this->extend('layout'); ?>
|
|
|
|
<?= $this->section('menu'); ?>
|
|
<?= $this->include('sidebar') ?>
|
|
<?= $this->endSection(); ?>
|
|
<?= $this->section('content'); ?>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-6 offset-sm-3">
|
|
|
|
<div class="card bg-secondary">
|
|
<div class="card-header bg-dark text-white-50">
|
|
<h5 class="card-title"> <?= lang('Auth.login') ?></h5>
|
|
</div>
|
|
<div class="card-body bg-dark text-white-50">
|
|
|
|
<?php if (session('error') !== null) : ?>
|
|
<div class="alert alert-danger" role="alert"><?= session('error') ?></div>
|
|
<?php elseif (session('errors') !== null) : ?>
|
|
<div class="alert alert-danger" role="alert">
|
|
<?php if (is_array(session('errors'))) : ?>
|
|
<?php foreach (session('errors') as $error) : ?>
|
|
<?= $error ?>
|
|
<br>
|
|
<?php endforeach ?>
|
|
<?php else : ?>
|
|
<?= session('errors') ?>
|
|
<?php endif ?>
|
|
</div>
|
|
<?php endif ?>
|
|
|
|
<?php if (session('message') !== null) : ?>
|
|
<div class="alert alert-success" role="alert"><?= session('message') ?></div>
|
|
<?php endif ?>
|
|
|
|
<form action="<?= url_to('login') ?>" method="post">
|
|
<?= csrf_field() ?>
|
|
|
|
<!-- Email -->
|
|
<div class="mb-2">
|
|
<input type="email" class="form-control bg-transparent text-light " name="email" inputmode="email" autocomplete="email" placeholder="<?= lang('Auth.email') ?>" value="<?= old('email') ?>" required />
|
|
</div>
|
|
|
|
<!-- Password -->
|
|
<div class="mb-2">
|
|
<input type="password" class="form-control bg-transparent text-light " name="password" inputmode="text" autocomplete="current-password" placeholder="<?= lang('Auth.password') ?>" required />
|
|
</div>
|
|
|
|
<!-- Remember me -->
|
|
<?php if (setting('Auth.sessionConfig')['allowRemembering']): ?>
|
|
<div class="form-check">
|
|
<label class="form-check-label">
|
|
<input type="checkbox" name="remember" class="form-check-input bg-transparent text-light" <?php if (old('remember')): ?> checked<?php endif ?>>
|
|
<?= lang('Auth.rememberMe') ?>
|
|
</label>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<div class="d-grid col-12 col-md-8 mx-auto m-3">
|
|
<button type="submit" class="btn btn-primary btn-block"><?= lang('Auth.login') ?></button>
|
|
</div>
|
|
|
|
<?php if (setting('Auth.allowMagicLinkLogins')) : ?>
|
|
<p class="text-center"><?= lang('Auth.forgotPassword') ?> <a href="<?= url_to('magic-link') ?>"><?= lang('Auth.useMagicLink') ?></a></p>
|
|
<?php endif ?>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<?= $this->endSection(); ?>
|