Fedi.CrowdedGames.Group/src/HTTP/HTML/setting.html
CatAClock 339cfdedf9 V1.1 (#72)
New Version!

- A backend has been created. It now works on a local server. Just compile it with cargo.
- Facet fixed finally.
- Multiple random warning fixes
- Threads now go longer than the 3 that was created before.
- Replies can now be seen.
- Clicking on a bsky post now doesn't break the thing.
- Tags not working as intended (Mastodon)
- Sometimes posts don't load. This is intentional: Sometimes it's "unknown" and "external" and these aren't supported because AIDS or something.

Reviewed-on: #72
Co-authored-by: CatAClock <CatAClock@proton.me>
Co-committed-by: CatAClock <CatAClock@proton.me>
2025-07-17 04:07:33 +00:00

48 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; flex-wrap: wrap; justify-content: center; height: 75vh;">
<!-- Toggling things. -->
<div class="Button">
<p class="Remote">Toggle Remote</p>
</div>
<!-- Mastodon things. -->
<div class="Button">
<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 class="Button">
<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 class="Button">
<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>
<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>