itmo-php-course/engine/app/template/tpl_layout.php

39 lines
1.1 KiB
PHP

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo $pageTitle; ?></title>
<style>
body { font-family: sans-serif; }
.audio-player { margin-bottom: 10px; }
.logout, .login { margin-bottom: 10px; }
</style>
</head>
<body>
<?php if ($auth): ?>
<div class="logout"><a href="logout.php">Выход</a></div>
<?php else: ?>
<div class="login"><a href="login.php">Вход</a></div>
<?php endif; ?>
<?php
$audioFiles = $box; // Переименовали переменную для ясности
foreach ($audioFiles as $file):
if (file_exists($file)) : ?>
<div class="audio-player">
<audio controls="controls">
<source src="<?php echo htmlspecialchars($file); ?>" type="audio/mpeg">
Ваш браузер не поддерживает HTML5 audio.
</audio>
</div>
<?php else: ?>
<p>Файл "<?php echo htmlspecialchars($file); ?>" не найден.</p>
<?php endif;
endforeach;
?>
</body>
</html>