mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
92 lines
3.8 KiB
PHP
Executable File
92 lines
3.8 KiB
PHP
Executable File
<?= $this->extend(config('Auth')->views['layout']) ?>
|
|
|
|
<?= $this->section('title') ?><?= lang('Auth.useMagicLink') ?> <?= $this->endSection() ?>
|
|
|
|
<?= $this->section('main') ?>
|
|
|
|
|
|
<!-- Content -->
|
|
<div class="authentication-wrapper authentication-cover authentication-bg">
|
|
<div class="authentication-inner row">
|
|
<!-- /Left Text -->
|
|
<div class="d-none d-lg-flex col-lg-6 p-0">
|
|
<div class="auth-cover-bg auth-cover-bg-color d-flex justify-content-center align-items-center">
|
|
<img
|
|
src="<?= site_url('themes/vuexy/img/safekat/login/auth-login-illustration-light.png') ?>"
|
|
alt="auth-forgot-password-cover"
|
|
class="img-fluid my-5 auth-illustration"
|
|
/>
|
|
|
|
<img
|
|
src="<?= site_url('themes/vuexy/img/illustrations/bg-shape-image-light.png'); ?>"
|
|
alt="auth-forgot-password-cover"
|
|
class="platform-bg"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<!-- /Left Text -->
|
|
|
|
<!-- Forgot Password -->
|
|
<div class="d-flex col-12 col-lg-6 align-items-center p-sm-5 p-4">
|
|
<div class="w-px-500 mx-auto">
|
|
<!-- Logo -->
|
|
<div class="app-brand mb-4">
|
|
<a href="index.html" class="app-brand-link gap-2">
|
|
<span class="app-brand-logo">
|
|
<img src="<?= site_url('themes/vuexy/img/safekat/logos/sk-logo.png') ?>"
|
|
</span>
|
|
</a>
|
|
</div>
|
|
<!-- /Logo -->
|
|
<h3 class="mb-1 fw-bold"><?= lang('Auth.useMagicLink') ?></h3>
|
|
|
|
<?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 ?>
|
|
|
|
<form id="sendForm" class="mb-3" action="<?= url_to('magic-link') ?>" method="post">
|
|
<?= csrf_field() ?>
|
|
<div class="mb-3">
|
|
<label for="floatingEmailInput" class="form-label"><?= lang('Auth.email') ?></label>
|
|
<input
|
|
type="email"
|
|
class="form-control"
|
|
id="floatingEmailInput"
|
|
name="email"
|
|
inputmode="email"
|
|
placeholder="<?= lang('Auth.email') ?>"
|
|
value="<?= old('email', auth()->user()->email ?? null) ?>"
|
|
required
|
|
autofocus
|
|
/>
|
|
</div>
|
|
|
|
<button class="btn btn-primary d-grid w-100"><?= lang('Auth.send') ?></button>
|
|
</form>
|
|
<div class="text-center">
|
|
<a href="<?= url_to('login') ?>" class="d-flex align-items-center justify-content-center">
|
|
<i class="ti ti-chevron-left scaleX-n1-rtl"></i>
|
|
<?= lang('Auth.backToLogin') ?>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- /Forgot Password -->
|
|
</div>
|
|
</div>
|
|
<!-- / Content -->
|
|
|
|
|
|
<?= $this->endSection() ?>
|