mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-22 16:51:20 +00:00
17 lines
411 B
PHP
17 lines
411 B
PHP
<?php declare(strict_types=1);
|
|
|
|
?>
|
|
<?= $this->extend(config('Auth')->views['layout']) ?>
|
|
|
|
<?= $this->section('title') ?><?= lang('Auth.useMagicLink') ?> <?= $this->endSection() ?>
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<p class="text-lg font-semibold"><?= lang('Auth.checkYourEmail') ?></p>
|
|
|
|
<p><?= lang('Auth.magicLinkDetails', [setting('Auth.magicLinkLifetime') / 60]) ?></p>
|
|
|
|
</form>
|
|
|
|
<?= $this->endSection() ?>
|