32 lines
1.1 KiB
PHP
32 lines
1.1 KiB
PHP
<!doctype html>
|
|
<html lang="en" class="has-navbar-fixed-top">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>MUSIC APP</title>
|
|
<link rel="stylesheet" href="<?= base_url('assets/style.css') ?>">
|
|
</head>
|
|
<body>
|
|
<main class='container'>
|
|
<header class="navbar">
|
|
<div class="logo">
|
|
<img src="assets/img/SpotiFly.png" alt="SpotiFly">
|
|
</div>
|
|
<nav class="menu">
|
|
<ul>
|
|
<li><?= anchor('https://dwarves.iut-fbleau.fr/~boutaric/test/ci/','Home'); ?></li>
|
|
<li><?= anchor('albums','Albums'); ?></li>
|
|
<li><?= anchor('artistes','Artistes'); ?></li>
|
|
<li><?= anchor('playlist','Playlist'); ?></li>
|
|
</ul>
|
|
</nav>
|
|
<div class="user">
|
|
<a class="bouton" href="html/Connexion.html">Connexion</a>
|
|
<a class="bouton" href="html/Inscription.html">S'inscrire</a>
|
|
</div>
|
|
</header>
|
|
<script src="assets/bouton.js"></script>
|
|
<button id="scrollTopBtn" onclick="scrollToTop()">
|
|
<span>↑</span>
|
|
</button>
|
|
</body>
|
|
</html>
|