17 lines
478 B
HTML
17 lines
478 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Player</title>
|
|
</head>
|
|
<body>
|
|
<div style="align-items: center; justify-content: center; display: flex;" id="player"><img src="assets/loading.gif" width="48"> <b>Chargement du player, veuillez patienter...</b></div>
|
|
<script>
|
|
setTimeout(() => {
|
|
window.location="player.php";;
|
|
}, 500);
|
|
</script>
|
|
</body>
|
|
</html>
|