castopod/app/Views/install/manual_config.php
Yassine Doghri 769ea469c9 refactor: update install logic and add missing cache config step
- add `.env.example` and `INSTALL.md` to castopod bundle for installation docs
- update seeders to be silent on insert errors
- update install layout
- add manual config instructions when .env file is not writable
- fix eslint error in Charts.ts module

closes #32
2020-10-15 14:42:13 +00:00

15 lines
494 B
PHP

<?= $this->extend('install/_layout') ?>
<?= $this->section('content') ?>
<h1 class="mb-2 text-xl font-bold"><?= lang('Install.manual_config') ?></h1>
<div class="inline-flex items-baseline max-w-2xl px-4 py-2 mb-4 font-semibold text-red-900 bg-red-200 border border-red-700">
<?= icon('alert', 'mr-2 flex-shrink-0') . lang('Install.messages.writeError') ?>
</div>
<p class="mb-4 font-semibold text-gray-600"><?= lang(
'Install.manual_config_subtitle'
) ?></p>
<?= $this->endSection()
?>