41 lines
1.3 KiB
HTML
41 lines
1.3 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>
|
|
<section>
|
|
<!-- Account information goes into this div. -->
|
|
<div id="stick">
|
|
<h2 class="Account"></h2>
|
|
<img class="AccountImage"/>
|
|
<p class="AccountDescription"></p>
|
|
<aside style="display: flex; justify-content: center;">
|
|
<p class="Button Follow">Follow!</p>
|
|
<p class="Button Block">Block!</p>
|
|
</aside>
|
|
</div>
|
|
<!-- Either other account info goes here, or posts go here. -->
|
|
<div>
|
|
<h2 class="Account"></h2>
|
|
<img class="AccountImage" hidden=true/>
|
|
<p class="AccountDescription"></p>
|
|
<div class="Posts"></div>
|
|
</div>
|
|
</section>
|
|
<footer>
|
|
<p class="Button" onclick="history.back();"><b>Back</b></p>
|
|
</footer>
|
|
</body>
|
|
</html>
|