castopod/modules/Install/Views/manual_config.php
Yassine Doghri 5083cd2fda refactor(modules): extract castopod parts into a modules/ folder for a scalable HMVC structure
- create Admin, Analytics, Auth, Fediverse and Install modules in the root modules/ folder
- rename
ActivityPub to Fediverse
2021-12-29 11:54:22 +00:00

17 lines
529 B
PHP

<?= $this->extend('Modules\Install\Views\_layout') ?>
<?= $this->section('content') ?>
<h1 class="mb-2 text-xl font-bold font-display"><?= 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()
?>