importing the api calls in the component and creating api endpoints for the cis profile page

This commit is contained in:
Simon Gschnell
2023-11-15 13:49:06 +01:00
parent 9227cc12f0
commit 7c229bbcee
6 changed files with 127 additions and 32 deletions
+3 -2
View File
@@ -9,10 +9,11 @@ $this->load->view('templates/CISHTML-Header', $includesArray);
?>
<div id="content">
<h2>Profil</h2>
<h2>Profil2</h2>
<hr>
<p><?php echo $uid; ?></p>
<Profil></Profil>
<!-- we can pass information from the php view file to the public js file through interpolating data from php into vue props -->
<Profil uid="<?php echo $uid ?>" pid="<?php echo $pid ?>"></Profil>
</div>
<?php $this->load->view('templates/CISHTML-Footer', $includesArray); ?>