36 lines
914 B
HTML
36 lines
914 B
HTML
<!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>
|
|
<div>
|
|
<a href="/tree">
|
|
<button>all uploaded files</button>
|
|
</a>
|
|
<a href="/last">
|
|
<button>last uploaded file</button>
|
|
</a>
|
|
</div>
|
|
|
|
<form action="/upload" method="POST">
|
|
<textarea name="content" placeholder="Enter your content here..."></textarea>
|
|
<br />
|
|
<button type="submit">upload</button>
|
|
</form>
|
|
|
|
<footer>
|
|
abyss paste - powered by
|
|
<a href="https://github.com/jabuxas/abyss" target="_blank">abyss</a>
|
|
</footer>
|
|
</body>
|
|
|
|
</html>
|