18 lines
508 B
PHP
18 lines
508 B
PHP
|
<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>
|
||
|
|
||
|
<h2>Caméra : <?= $this->clean($camera->getName())?></h2>
|
||
|
|
||
|
<div id="rtmp-player-container"></div>
|
||
|
<script>
|
||
|
jwplayer("rtmp-player-container").setup({
|
||
|
file: "rtmp://cam.wildsparksoftware.com:1935/livecam/<?=$this->clean($camera->getId())?>"
|
||
|
});
|
||
|
</script>
|