forked from neri/datatrash
19 lines
477 B
HTML
19 lines
477 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>datatrash</title>
|
|
<link href="/static/index.css" rel="stylesheet" />
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>datatrash</h1>
|
|
<form action="/upload" method="POST" enctype="multipart/form-data">
|
|
<input type="file" name="content" />
|
|
<input type="text" name="validity_secs" />
|
|
<input type="text" name="kind" />
|
|
<input type="submit" value="Hochladen" />
|
|
</form>
|
|
</main>
|
|
</body>
|
|
</html>
|