hubl/src/html/project.php

24 lines
710 B
PHP

<div id="project" style="display: none">
<sib-router id="project-router" default-route="project-profile">
<sib-route name="project-chat">
<button>Chat</button>
</sib-route>
<sib-route name="project-profile">
<button>Voir</button>
</sib-route>
<sib-route name="project-edit">
<button>Éditer</button>
</sib-route>
<sib-route name="project-create">
<button>Nouveau</button>
</sib-route>
</sib-router>
<div id="project-views-container">
<?php require_once('project-chat.html'); ?>
<?php require_once('project-profile.html'); ?>
<?php require_once('project-edit.html'); ?>
<?php require_once('project-create.html'); ?>
</div>
</div>