mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-12 17:25:45 +00:00

- add installGateway to app config - update route names and groups - remove `author_name` and `author_email` from `episodes` table - remove `author_name` and `author_email` from `podcasts` table - remove `owner_id` + add `created_by` and `updated_by` fields in `podcasts` and `episodes` tables - remove unnecessary comments in database fields - remove confirm password inputs from auth forms for better ux - rename `pub_date` field to `published_at` and add publication time field in episode form closes #14, #28
35 lines
1.4 KiB
PHP
35 lines
1.4 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',
|
|
'text-3xl 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') ?>
|
|
<p class="py-4 border-t">
|
|
Powered by <a class="underline hover:no-underline" href="https://castopod.org" target="_blank" rel="noreferrer noopener">Castopod</a>, a <a class="underline hover:no-underline" href="https://podlibre.org/" target="_blank" rel="noreferrer noopener">Podlibre</a> initiative.
|
|
</p>
|
|
</footer>
|
|
</body>
|