Files
ConnectHub/pages/settings.html
2024-09-19 10:49:36 +02:00

62 lines
2.5 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">
<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>
<label class="mini-label" for="profile-description">Profil Leírás:</label>
<textarea id="profile-description" placeholder="Add meg a profil leírását..."></textarea>
<div class="button-container">
<button class="settings-button" id="save-profile">Mentés</button>
</div>
</section>
<!-- Beállítások kártya -->
<section class="settings-card">
<h2>Beállítások</h2>
<label class="mini-label" for="content-filter">Felnőtt tartalmak szűrése:</label>
<label class="rocker rocker-small">
<input type="checkbox" id="content-filter">
<span class="switch-left">SFW</span>
<span class="switch-right">NSFW</span>
</label>
</section>
</div>
</section>
<script src="../js/settings.js"></script>
</body>
</html>