mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-07 16:56:43 +02:00
16 lines
411 B
PHP
16 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() ?>
|