71 lines
3.2 KiB
PHP
71 lines
3.2 KiB
PHP
<?= $this->extend(config('Auth')->views['layout']) ?>
|
|
|
|
<?= $this->section('title') ?>로그인<?= $this->endSection() ?>
|
|
|
|
<?= $this->section('guestContent') ?>
|
|
<div class="container d-flex justify-content-center p-5">
|
|
<div class="card col-12 col-md-5 shadow-sm">
|
|
<div class="card-body">
|
|
<h5 class="card-title mb-5 text-center">로그인</h5>
|
|
|
|
<?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="text" class="form-control" name="username" placeholder="<?= lang('Auth.username') ?>" value="<?= old('username') ?>" />
|
|
</div>
|
|
|
|
<!-- Password -->
|
|
<div class="mb-2">
|
|
<input type="password" class="form-control" name="password" inputmode="text" autocomplete="current-password" placeholder="<?= lang('Auth.password') ?>" />
|
|
</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" <?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"><a href="<?= url_to('magic-link') ?>"><?= lang('Auth.forgotPassword') ?> </a></p>
|
|
<?php endif ?>
|
|
|
|
<?php if (setting('Auth.allowRegistration')) : ?>
|
|
<p class="text-center"><a href="<?= url_to('register') ?>"><?= lang('Auth.register') ?></a></p>
|
|
<?php endif ?>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?= $this->endSection() ?>
|