Fedi.CrowdedGames.Group/HTML/account.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

34 lines
1.1 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/account.css">
<script type="module" src="../JS/account.js"></script>
<!-- Dependenci -->
<script language="JavaScript" type="text/javascript" src="https://kjur.github.io/jsrsasign/jsrsasign-latest-all-min.js"></script>
</head>
<body style="margin: 0px; text-align: center;">
<header>
<h1>Account</h1>
</header>
<div>
<h2 class="Account"></h2>
<img class="AccountImage" />
<p class="AccountDescription"></p>
<div style="display: flex; justify-content: center;">
<p class="Button Follow">Follow!</p>
<p class="Button Block">Block!</p>
</div>
<div class="Posts">
<p>Not implemented. Posts should populate here.</p>
</div>
</div>
<footer>
<p class="Button" onclick="history.back();"><b>Back</b></p>
</footer>
</body>
</html>