Files
ConnectHub/pages/settings.html
2024-09-25 20:49:15 +02:00

94 lines
4.0 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>ConnectHub</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">
<!-- 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>Általános Beállítások</h2>
<div class="content-filter-container">
<label class="mini-label" for="content-filter">Felnőtt tartalmak szűrése:</label>
<div class="switch-container">
<label class="rocker rocker-small">
<input type="checkbox" id="content-filter">
<span class="switch-left">SFW</span>
<span class="switch-right">NSFW</span>
</label>
</div>
</div>
</section>
<!-- Biztonság kártya -->
<section class="settings-card">
<h2>Biztonság</h2>
<h3>Privát profil bekapcsolása:</h3>
<div class="lock-container">
<input type="checkbox" id="lock" />
<label for="lock" class="lock-label">
<span class="lock-wrapper">
<span class="shackle"></span>
<svg
class="lock-body"
width=""
height=""
viewBox="0 0 28 28"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
d="M0 5C0 2.23858 2.23858 0 5 0H23C25.7614 0 28 2.23858 28 5V23C28 25.7614 25.7614 28 23 28H5C2.23858 28 0 25.7614 0 23V5ZM16 13.2361C16.6137 12.6868 17 11.8885 17 11C17 9.34315 15.6569 8 14 8C12.3431 8 11 9.34315 11 11C11 11.8885 11.3863 12.6868 12 13.2361V18C12 19.1046 12.8954 20 14 20C15.1046 20 16 19.1046 16 18V13.2361Z"
fill="white"
></path>
</svg>
</span>
</label>
</div>
</section>
<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>
</div>
</section>
<script src="../js/settings.js"></script>
</body>
</html>