Compare commits
No commits in common. "8ca0a9cdee43b54bdcb193378a48afb559a52bec" and "de43726283eddbd59b93195c25ba8eae283b1694" have entirely different histories.
8ca0a9cdee
...
de43726283
|
@ -1,3 +1,2 @@
|
||||||
/target
|
/target
|
||||||
/files
|
/files
|
||||||
/static/index.html
|
|
||||||
|
|
BIN
screenshot.png
BIN
screenshot.png
Binary file not shown.
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 31 KiB |
|
@ -31,7 +31,7 @@ body {
|
||||||
main {
|
main {
|
||||||
color: var(--fg);
|
color: var(--fg);
|
||||||
width: 100%;
|
width: 100%;
|
||||||
max-width: 1000px;
|
max-width: 1200px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
}
|
}
|
||||||
|
@ -88,7 +88,6 @@ a:focus-within {
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
width: 100%;
|
|
||||||
height: 30vh;
|
height: 30vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,73 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="de-DE">
|
||||||
|
<head>
|
||||||
|
<title>datatrash</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
<meta name="description" content="Temporärer Dateiaustausch" />
|
||||||
|
<link href="/static/index.css" rel="stylesheet" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<main>
|
||||||
|
<h1>datatrash</h1>
|
||||||
|
<form action="/upload" method="POST" enctype="multipart/form-data">
|
||||||
|
<label for="file-upload">datei (maximal 8MiB)
|
||||||
|
</label>
|
||||||
|
<br />
|
||||||
|
<input id="file-upload" type="file" name="file" />
|
||||||
|
<br />
|
||||||
|
<label for="text-upload">oder asciitrash</label>
|
||||||
|
<br />
|
||||||
|
<textarea id="text-upload" name="text" cols="120"></textarea>
|
||||||
|
<br />
|
||||||
|
<label for="keep_for">gültig für</label>
|
||||||
|
<select id="keep_for" name="keep_for">
|
||||||
|
<option value="1800">30 minuten</option>
|
||||||
|
<option value="3600">60 minuten</option>
|
||||||
|
<option value="43200">12 stunden</option>
|
||||||
|
<option value="86400">24 stunden</option>
|
||||||
|
<option value="604800">eine woche</option>
|
||||||
|
<option value="2678400">einen monat</option>
|
||||||
|
</select>
|
||||||
|
<br />
|
||||||
|
<input
|
||||||
|
id="delete_on_download"
|
||||||
|
type="checkbox"
|
||||||
|
name="delete_on_download"
|
||||||
|
/>
|
||||||
|
<label for="delete_on_download">nach einem download löschen</label>
|
||||||
|
<br />
|
||||||
|
<input class="main button" type="submit" value="hochladen" />
|
||||||
|
</form>
|
||||||
|
<details class="usage">
|
||||||
|
<summary>nutzung als api</summary>
|
||||||
|
<pre>
|
||||||
|
datei hochladen
|
||||||
|
curl -F 'file=@yourfile.rs' <domain>/upload
|
||||||
|
|
||||||
|
text hochladen
|
||||||
|
curl -F 'text=your text' <domain>/upload
|
||||||
|
|
||||||
|
zeitbegrenzung setzen
|
||||||
|
curl -F 'text=your text' -F 'keep_for=1800' <domain>/upload
|
||||||
|
|
||||||
|
nach einem download löschen
|
||||||
|
curl -F 'text=your text' -F 'delete_on_download=true' <domain>/upload
|
||||||
|
|
||||||
|
authentifizieren
|
||||||
|
curl -F 'text=your text' -F 'password=…' <domain>/upload</pre
|
||||||
|
>
|
||||||
|
</details>
|
||||||
|
</main>
|
||||||
|
<footer>
|
||||||
|
<a
|
||||||
|
class="repo"
|
||||||
|
href="https://repos.ctdo.de/neri/datatrash"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
>
|
||||||
|
repo
|
||||||
|
</a>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -17,7 +17,7 @@
|
||||||
<br />
|
<br />
|
||||||
<label for="text-upload">oder asciitrash</label>
|
<label for="text-upload">oder asciitrash</label>
|
||||||
<br />
|
<br />
|
||||||
<textarea id="text-upload" name="text" rows="15" cols="120"></textarea>
|
<textarea id="text-upload" name="text" cols="120"></textarea>
|
||||||
<br />
|
<br />
|
||||||
<label for="keep_for">gültig für</label>
|
<label for="keep_for">gültig für</label>
|
||||||
<select id="keep_for" name="keep_for">
|
<select id="keep_for" name="keep_for">
|
||||||
|
|
Loading…
Reference in New Issue