mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 20:29:29 +00:00
19 lines
352 B
PHP
19 lines
352 B
PHP
<?php
|
|
$includesArray = array(
|
|
'title' => 'FH-Complete',
|
|
'bootstrap5' => true,
|
|
'fontawesome6' => true,
|
|
);
|
|
|
|
$this->load->view('templates/FHC-Header', $includesArray);
|
|
?>
|
|
|
|
<div id="wrapper">
|
|
<div class="alert alert-primary" role="alert">
|
|
<?= $error; ?>
|
|
</div>
|
|
</div>
|
|
|
|
<?php $this->load->view('templates/FHC-Footer', $includesArray); ?>
|
|
|