2021-09-02 16:34:25 +00:00
|
|
|
<?= $this->extend('_layout') ?>
|
2021-04-02 17:20:02 +00:00
|
|
|
|
|
|
|
<?= $this->section('pageTitle') ?>
|
|
|
|
<?= lang('Episode.unpublish') ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
|
2022-01-23 16:53:23 +00:00
|
|
|
<form action="<?= route_to('episode-unpublish', $podcast->id, $episode->id) ?>" method="POST" class="flex flex-col max-w-lg mx-auto">
|
2021-09-15 15:58:21 +00:00
|
|
|
<?= csrf_field() ?>
|
|
|
|
|
2024-05-09 17:55:41 +00:00
|
|
|
<x-Alert variant="danger" class="font-semibold"><?= lang('Episode.unpublish_form.disclaimer') ?></x-Alert>
|
2021-04-02 17:20:02 +00:00
|
|
|
|
2024-12-19 12:33:57 +00:00
|
|
|
<x-Forms.Checkbox class="mt-2" name="understand" isRequired="true"><?= lang('Episode.unpublish_form.understand') ?></x-Forms.Checkbox>
|
2021-09-15 15:58:21 +00:00
|
|
|
|
|
|
|
<div class="self-end mt-4">
|
2024-05-09 17:55:41 +00:00
|
|
|
<x-Button uri="<?= route_to('episode-view', $podcast->id, $episode->id) ?>"><?= lang('Common.cancel') ?></x-Button>
|
|
|
|
<x-Button type="submit" variant="danger"><?= lang('Episode.unpublish_form.submit') ?></x-Button>
|
2021-09-15 15:58:21 +00:00
|
|
|
</div>
|
2021-04-02 17:20:02 +00:00
|
|
|
|
2021-09-15 15:58:21 +00:00
|
|
|
</form>
|
2021-04-02 17:20:02 +00:00
|
|
|
|
|
|
|
<?= $this->endSection() ?>
|