Yassine Doghri dfb7888aeb feat(plugins): add aside with plugin metadata next to plugin's readme
- enhance plugin card ui
- refactor components to be more consistent
- invert toggler label for better UX
- edit view components regex
2024-06-14 15:53:33 +00:00

36 lines
1007 B
PHP

<?= $this->extend('../cp_admin/_layout') ?>
<?= $this->section('title') ?>
<?= lang('Subscription.add', [esc($podcast->title)]) ?>
<?= $this->endSection() ?>
<?= $this->section('pageTitle') ?>
<?= lang('Subscription.add', [esc($podcast->title)]) ?>
<?= $this->endSection() ?>
<?= $this->section('content') ?>
<form method="POST" action="<?= route_to('subscription-create', $podcast->id) ?>" class="flex flex-col max-w-sm gap-y-4">
<?= csrf_field() ?>
<input type="hidden" name="client_timezone" value="UTC" />
<x-Forms.Field
name="email"
type="email"
label="<?= esc(lang('Subscription.form.email')) ?>"
isRequired="true" />
<x-Forms.Field
as="DatetimePicker"
name="expiration_date"
label="<?= esc(lang('Subscription.form.expiration_date')) ?>"
hint="<?= esc(lang('Subscription.form.expiration_date_hint')) ?>"
/>
<x-Button type="submit" class="self-end" variant="primary"><?= lang('Subscription.form.submit_create') ?></x-Button>
</form>
<?= $this->endSection() ?>