mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00

- add podcast sidebar navigation - add podcast dashboard with latest episodes - add pagination to podcast episodes - add components helper to reuse ui components (button, data_table, etc.) - enhance podcast and episode forms by splitting them into form sections - add hint tooltips to podcast and episode forms - transform radio inputs as buttons for better ux - replace explicit field by parental_advisory - replace author field by publisher - add podcasts_categories table to set multiple categories - use choices.js to enhance multiselect fields - update Language files - update js dependencies to latest versions closes #31, #9
33 lines
1.3 KiB
PHP
33 lines
1.3 KiB
PHP
<?= helper('svg') ?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<title>Castopod Auth</title>
|
|
<meta name="description" content="Castopod is an open-source hosting platform made for podcasters who want engage and interact with their audience."/>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<link rel="shortcut icon" type="image/png" href="/favicon.ico" />
|
|
<link rel="stylesheet" href="/assets/index.css"/>
|
|
</head>
|
|
|
|
<body class="flex flex-col items-center justify-center min-h-screen mx-auto bg-gray-100">
|
|
<header class="mb-4">
|
|
<a href="<?= route_to('home') ?>" class="inline-flex items-center">
|
|
<?= svg('logo-castopod', 'h-10 mr-2') ?><span class="text-xl">Castopod</span>
|
|
</a>
|
|
</header>
|
|
<main class="w-full max-w-md px-6 py-4 mx-auto bg-white rounded-lg shadow">
|
|
<h1 class="mb-2 text-2xl text-center"><?= $this->renderSection('title') ?></h1>
|
|
<?= view('_message_block') ?>
|
|
<?= $this->renderSection('content') ?>
|
|
</main>
|
|
<footer class="flex flex-col text-sm">
|
|
<?= $this->renderSection('footer') ?>
|
|
<small class="py-4 text-center border-t"><?= lang('Common.powered_by', [
|
|
'castopod' =>
|
|
'<a class="underline hover:no-underline" href="https://castopod.org" target="_blank" rel="noreferrer noopener">Castopod</a>',
|
|
]) ?></small>
|
|
</footer>
|
|
</body>
|