This repository has been archived on 2021-05-18. You can view files and clone it, but cannot push or open issues or pull requests.
website/index.html

90 lines
2.5 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html lang="en">
<head>
<title>FediBlock</title>
<meta charset="utf-8">
<meta name="robots" content="noindex, nofollow">
<style>
label
{
display: block;
float: left;
width: 11ch;
text-align: right;
margin-right: 1ch;
}
input[type=text], input[type=url]
{
width: 60ch;
}
input[type=button]
{
padding: 0;
}
span.optional
{
font-style: italic;
}
p.footer
{
text-align: right;
}
</style>
</head>
<body>
<h1>FediBlock</h1>
<h2>What is this?</h2>
<p>This is a central blocklist for the Fediverse.</p>
<h2>Blocklist</h2>
<ul>
<li>Look at <a href="/blocklist/">All block recommendations in one page</a>.</li>
<li>
<a href="/rss">Subscribe to all new recommendations via RSS</a>, or<br>
<form method="get" action="/rss">
<label for="tags_rss" style="width: auto;">subscribe only to these tags:</label>
<input type="text" id="tags_rss" name="tags[]" placeholder="tag1,tag2,tag3"
style="width: 42ch;">
<input type="submit">
</form>
</li>
</ul>
<h2>Suggest instance</h2>
<form method="post" action="/add" enctype="multipart/form-data">
<label for="instance">Instance:</label>
<input type="text" id="instance" name="instance" placeholder="example.com" autofocus required>
<br>
<label for="tags">Tags:</label>
<input type="text" id="tags" name="tags" placeholder="tag1,tag2" autocomplete="on" required>
<!-- <input type="button" id="add_tag" value="" disabled> -->
<br>
<label for="receipts">Receipts:</label>
<input type="url" id="receipts" name="receipts"
placeholder="https://example.com/@user/1234567890,https://example.com/about/more" required>
<!-- <input type="button" id="add_receipt" value="" disabled> -->
<br>
<label for="screenshot">Screenshot:</label>
<input type="file" id="screenshot" name="screenshot" accept="image/*">
<span class="optional">(optional)</span><br>
<label for="description">Description:</label><br>
<textarea id="description" name="description" cols="80" rows="20" required></textarea><br>
<input type="submit">
</form>
<p class="footer">
<a href="https://schlomp.space/FediBlock">Sourcecode</a> licensed under the
<a href="https://www.gnu.org/licenses/agpl-3.0.html">AGPL-3.0-only</a>.
</p>
</body>
</html>