mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-17 12:09:28 +00:00
19 lines
412 B
PHP
19 lines
412 B
PHP
<?php
|
|
$includesArray = array(
|
|
'title' => 'Stundenplan',
|
|
'customJSModules' => ['public/js/apps/Cis/ProfilApp.js'],
|
|
'customCSSs' => ['public/css/components/calendar.css']
|
|
);
|
|
|
|
$this->load->view('templates/CISHTML-Header', $includesArray);
|
|
?>
|
|
|
|
<div id="content">
|
|
<h2>Profil</h2>
|
|
<hr>
|
|
<p><?php echo $uid; ?></p>
|
|
<Profil></Profil>
|
|
</div>
|
|
|
|
<?php $this->load->view('templates/CISHTML-Footer', $includesArray); ?>
|