Fedi.CrowdedGames.Group/HTML/post.html
CatAClock 8c69eaa88a FinalReleaseChanges (#49)
- Loads of bug fixes.
- CSS improvements.
- Tags added.
- Optimized some things.
- Some other oddities? I don't know :3
- Happiness increased by 2%.
2025-06-05 00:25:39 +00:00

46 lines
1.6 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/post.css">
<script type="module" src="../JS/post.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>Post</h1>
</header>
<section>
<!-- This the typing div :3 -->
<div class="Divide">
<textarea cols="50" rows="25" class="Text" placeholder="status here..."></textarea>
<div><textarea cols="50" rows="2" class="Warning" maxlength="100" placeholder="Content Warnings"></textarea></div>
<div><textarea cols="50" rows="1" class="Tags" maxlength="50" placeholder="Tags (seperate with ;)"></textarea></div>
</div>
<!-- This the "settings" div :3 -->
<div class="Divide">
<select class="PostVisibility">
<option value="Public">Public Post</option>
<option value="Quiet">Quiet Public Post</option>
<option value="Friend">Friends Only Post</option>
<option value="Private">Private Post</option>
</select>
<div></div>
<input type="checkbox" class="PostYoutube" />
<label>Post to Youtube</label>
</div>
</div>
<div class="Divide Button">
<p>POST!</p>
</div>
</section>
<footer>
<p class="SmallButton" onclick="history.back();"><b>Back</b></p>
</footer>
</body>
</html>