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>
|
2024-10-15 15:26:55 -03:00
|
|
|
<a href="/last">
|
|
|
|
<button>last uploaded file</button>
|
|
|
|
</a>
|
|
|
|
</div>
|
2024-10-15 15:35:45 -03:00
|
|
|
|
|
|
|
<form action="/upload" method="POST">
|
2024-10-31 10:13:58 -03:00
|
|
|
<textarea name="content" placeholder="Enter your content here..."></textarea>
|
|
|
|
<br />
|
2024-10-15 15:35:45 -03:00
|
|
|
<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>
|