50 lines
1.9 KiB
HTML
50 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="hu">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Papp Áron</title>
|
|
<link rel="stylesheet" href="../css/navbar.css" />
|
|
<link rel="stylesheet" href="../css/settings.css" />
|
|
<link href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" rel="stylesheet"/>
|
|
<script src="../js/navbar.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="navbar-container"></div>
|
|
<section class="home">
|
|
<!-- Zene beállítások kártya -->
|
|
<div class="settings-container">
|
|
<!-- Zene beállítások kártya -->
|
|
<section class="settings-card">
|
|
<h2>Zene Beállítások</h2>
|
|
<label class="mini-label" for="youtube-id">YouTube Videó ID:</label>
|
|
<input type="text" id="youtube-id" placeholder="Illessz be egy YouTube Videó ID-t..." />
|
|
<div id="video-container">
|
|
<iframe id="youtubePlayer" width="280" height="157" frameborder="0"
|
|
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
|
|
allowfullscreen></iframe>
|
|
</div>
|
|
|
|
<div class="loop-switch">
|
|
<input type="checkbox" id="loop-toggle" />
|
|
<label class="mini-label" for="loop-toggle">Ismétlés </label>
|
|
</div>
|
|
<div class="button-container">
|
|
<button class="settings-button" id="reset-music">Törlés</button>
|
|
<button class="settings-button" id="save-music">Mentés</button>
|
|
</div>
|
|
</section>
|
|
<!-- Profil beállítások kártya -->
|
|
<section class="settings-card">
|
|
<h2>Profil Beállítások</h2>
|
|
</section>
|
|
<section class="settings-card">
|
|
<h2>Beállítások</h2>
|
|
</section>
|
|
</div>
|
|
</section>
|
|
<script src="../js/settings.js"></script>
|
|
</body>
|
|
</html>
|