Commit initial

This commit is contained in:
2020-05-15 12:27:34 +02:00
commit 70f72f2e54
87 changed files with 12684 additions and 0 deletions

View File

@ -0,0 +1,24 @@
<h1>Site web Projet L3</h1>
<form method="get" action="default">
<button type="submit">Retour</button>
</form>
<form method="get" action="connexion/disconnect">
<button type="submit">Deconnexion</button>
</form>
<?php foreach($videos as $i => $video): ?>
<h5>Du <?=$video["begin"]?> au <?=$video["end"]?></h5>
<div id="rtmp-player-container-<?=$i?>"></div>
<script>
jwplayer("rtmp-player-container-<?=$i?>").setup({
file: "<?=$video['path']?>",
preload: false
});
</script>
<?php endforeach; ?>