Fedi.CrowdedGames.Group/HTML/setting.html
CatAClock f03e73132a MoreWork Merge (#40)
- Animation improvements on `Index.html`.
- Reduced the amount of code (and improved readability) of the APIs.
- Optimizations as well, but not that much.
- Accounts are now viewable. You can also follow and block them to your heart's content (I don't know what happens when you both block and follow).
- Many, many bug fixes that made it through.

Reviewed-on: #40
2025-05-26 02:37:03 +00:00

50 lines
1.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>The Fediverse</title>
<meta name="description" content="Change the fucking channel already!">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1" />
<link rel="icon" href="../Icons/favicon.ico" />
<link rel="stylesheet" href="../CSS/setting.css">
<script type="module" src="../JS/setting.js"></script>
<!-- Dependenci -->
<script language="JavaScript" type="text/javascript" src="https://kjur.github.io/jsrsasign/jsrsasign-latest-all-min.js"></script>
</head>
<body>
<header>
<h1>Setting</h1>
</header>
<div style="display: flex; justify-content: center; height: 75vh;">
<div class="Button">
<p class="Remote">Toggle Remote</p>
</div>
<div class="Button">
<!-- Sorry people! -->
<!-- Mastodon things. -->
<div>
<input type="text" class="WebInput Mastodon" placeholder="Website (mastodon.social)"/>
<p class="Login Mastodon"><em>Login to Mastodon</em></p>
<p class="Logout Mastodon Hidden"><em>Logout of Mastodon</em></p>
</div>
<!-- Bluesky things. -->
<div>
<input type="text" class="WebInput Bluesky" placeholder="Website (bsky.social)"/>
<p class="Login Bluesky"><em>Login to Bluesky</em></p>
<p class="Logout Bluesky Hidden"><em>Logout of Bluesky</em></p>
</div>
<!-- Youtube things. -->
<div>
<input type="text" class="WebInput Youtube" placeholder="Youtube API Key"/>
<input type="text" class="WebInput Youtube" placeholder="Youtube Channel Handle"/>
<p class="Login Youtube"><em>Login to Youtube</em></p>
<p class="Logout Youtube Hidden"><em>Logout of Youtube</em></p>
</div>
</div>
</div>
<footer>
<!-- This button has a different script compared to others because of authentication measures. -->
<p class="SmallButton" onclick="window.location.href = window.location.origin"><b>Back</b></p>
</footer>
</body>
</html>