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

- enhance plugin card ui - refactor components to be more consistent - invert toggler label for better UX - edit view components regex
25 lines
881 B
PHP
25 lines
881 B
PHP
<?= $this->extend('_layout') ?>
|
|
|
|
<?= $this->section('title') ?>
|
|
<?= lang('PodcastImport.syncForm.title') ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
<?= $this->section('pageTitle') ?>
|
|
<?= lang('PodcastImport.syncForm.title') ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
<?= $this->section('content') ?>
|
|
<form action="<?= route_to('podcast-imports-sync', $podcast->id) ?>" method="POST" class="flex flex-col max-w-sm gap-y-4" enctype="multipart/form-data">
|
|
<?= csrf_field() ?>
|
|
<x-Forms.Field
|
|
name="feed_url"
|
|
label="<?= esc(lang('PodcastImport.syncForm.feed_url')) ?>"
|
|
hint="<?= esc(lang('PodcastImport.syncForm.feed_url_hint')) ?>"
|
|
isRequired="true"
|
|
value="<?= $podcast->imported_feed_url ?? '' ?>"
|
|
/>
|
|
<x-Button variant="primary" class="self-end" type="submit"><?= lang('PodcastImport.syncForm.submit') ?></x-Button>
|
|
</form>
|
|
|
|
<?= $this->endSection() ?>
|