abyss/static/index.html

35 lines
905 B
HTML
Raw Normal View History

2024-09-18 10:26:32 -03:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Abyss - A minimalist pastebin webserver" />
<title>abyss paste</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h1>abyss paste</h1>
2024-10-15 15:35:45 -03:00
<div>
<a href="/tree">
<button>all uploaded files</button>
</a>
<a href="/last">
<button>last uploaded file</button>
</a>
</div>
2024-10-15 15:35:45 -03:00
<form action="/upload" method="POST">
<textarea name="content" placeholder="Enter your content here..."></textarea><br />
<button type="submit">upload</button>
</form>
2024-09-24 13:23:46 -03:00
<footer>
abyss paste - powered by
<a href="https://github.com/jabuxas/abyss" target="_blank">abyss</a>
</footer>
2024-09-18 10:26:32 -03:00
</body>
</html>