2020-08-14 18:27:57 +00:00
|
|
|
<?= helper('svg') ?>
|
2020-07-10 12:20:25 +00:00
|
|
|
<!DOCTYPE html>
|
2022-10-15 11:22:08 +00:00
|
|
|
<html lang="<?= service('request')
|
|
|
|
->getLocale() ?>">
|
2020-07-10 12:20:25 +00:00
|
|
|
|
2024-12-17 15:06:08 +00:00
|
|
|
<?= service('html_head')
|
|
|
|
->title('Castopod Auth')
|
2025-03-01 13:08:00 +00:00
|
|
|
->description('Castopod is an open-source hosting platform made for podcasters who want engage and interact with their audience.');
|
2024-12-17 15:06:08 +00:00
|
|
|
?>
|
2020-07-10 12:20:25 +00:00
|
|
|
|
2021-11-05 14:36:34 +00:00
|
|
|
<body class="flex flex-col items-center justify-center min-h-screen mx-auto bg-base">
|
2020-07-10 12:20:25 +00:00
|
|
|
<header class="mb-4">
|
2021-04-02 17:20:02 +00:00
|
|
|
<a href="<?= route_to(
|
2023-02-22 16:29:45 +00:00
|
|
|
'home',
|
2024-05-09 17:55:41 +00:00
|
|
|
) ?>" class="inline-flex items-baseline text-4xl font-bold font-display text-accent-base">
|
2021-04-02 17:20:02 +00:00
|
|
|
<?= 'castopod' . svg('castopod-logo', 'h-8 ml-2') ?>
|
2020-08-14 18:27:57 +00:00
|
|
|
</a>
|
2020-07-10 12:20:25 +00:00
|
|
|
</header>
|
2021-11-05 14:36:34 +00:00
|
|
|
<main class="flex flex-col w-full max-w-md px-6 py-4 mx-auto rounded-lg bg-elevated border-3 border-subtle gap-y-4">
|
2024-05-09 17:55:41 +00:00
|
|
|
<x-Heading tagName="h1" size="large" class="self-center"><?= $this->renderSection(
|
2024-12-17 15:06:08 +00:00
|
|
|
'pageTitle',
|
2024-05-09 17:55:41 +00:00
|
|
|
) ?></x-Heading>
|
2021-09-21 15:51:04 +00:00
|
|
|
<?= view('_message_block') ?>
|
2020-07-10 12:20:25 +00:00
|
|
|
<?= $this->renderSection('content') ?>
|
|
|
|
</main>
|
|
|
|
<footer class="flex flex-col text-sm">
|
|
|
|
<?= $this->renderSection('footer') ?>
|
2021-11-05 14:36:34 +00:00
|
|
|
<small class="py-4 text-center border-t border-subtle"><?= lang('Common.powered_by', [
|
2024-12-17 15:06:08 +00:00
|
|
|
'castopod' => '<a class="inline-flex font-semibold hover:underline" href="https://castopod.org/" target="_blank" rel="noreferrer noopener">Castopod' . icon('social:castopod', [
|
|
|
|
'class' => 'ml-1 text-lg',
|
|
|
|
]) . '</a>',
|
|
|
|
], null, false) ?></small>
|
2020-07-10 12:20:25 +00:00
|
|
|
</footer>
|
|
|
|
</body>
|