22 lines
511 B
PHP
22 lines
511 B
PHP
<?php
|
|
defined('BASEPATH') OR exit('No direct script access allowed');
|
|
?>
|
|
<!doctype html>
|
|
<body>
|
|
<main class='container'>
|
|
<nav>
|
|
<ul>
|
|
<li><strong>Dix heures</strong></li>
|
|
</ul>
|
|
<ul>
|
|
<li><?=anchor('albums','Albums');?></li>
|
|
<li><?=anchor('artistes','Artistes');?></li>
|
|
<li><?=anchor('playlist','Playlist');?></li>
|
|
<li><?=anchor('connect/login','Connexion');?></li>
|
|
</ul>
|
|
</nav>
|
|
<p>Vous êtes déconnecté.</p>
|
|
</main>
|
|
</body>
|
|
</html>
|