summaryrefslogtreecommitdiffstats
path: root/BlobBin/wwwroot/index.html
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2023-01-13 20:21:20 +0100
committerivarlovlie <git@ivarlovlie.no>2023-01-13 20:21:20 +0100
commit0ae5a68a9d81547bb9b741458d94b5f1b7374027 (patch)
tree485384d892cdfe4dc6af79f3cf0abe11d2e552b1 /BlobBin/wwwroot/index.html
parent971c00b8f5977db9422eeafa47b262c1030bd4af (diff)
downloadblob-bin-0ae5a68a9d81547bb9b741458d94b5f1b7374027.tar.xz
blob-bin-0ae5a68a9d81547bb9b741458d94b5f1b7374027.zip
feat: First dev release
Diffstat (limited to 'BlobBin/wwwroot/index.html')
-rw-r--r--BlobBin/wwwroot/index.html80
1 files changed, 0 insertions, 80 deletions
diff --git a/BlobBin/wwwroot/index.html b/BlobBin/wwwroot/index.html
deleted file mode 100644
index fa25951..0000000
--- a/BlobBin/wwwroot/index.html
+++ /dev/null
@@ -1,80 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
- <style>
- body {
- font-family: sans-serif;
- }
-
- form {
- width: 100%;
- max-width: 300px;
- display: flex;
- flex-direction: column;
- gap: 5px;
- }
-
- #forms {
- display: flex;
- flex-direction: row;
- gap: 15px;
- flex-wrap: wrap;
- }
-
- #forms summary {
- width: 300px;
- cursor: pointer;
- }
- </style>
- <title>Blobbin</title>
-</head>
-<body>
-<h1>Blobbin</h1>
-<p>This is a web service you can upload files and texts to.</p>
-<main id="forms">
- <details>
- <summary>Upload a file</summary>
- <form action="/upload" enctype="multipart/form-data" method="post">
- <input type="file" id="file" name="files" required>
- <label for="file-password">Password (optional)</label>
- <input type="password" name="password" id="file-password">
- <label for="file-auto-delete">
- Automatically delete after (optional)
- <span class="label-description"
- title="blank=never, <number><unit>, unit can be d=day,w=week,h=hour,m=minute">?</span>
- </label>
- <input type="text"
- id="file-auto-delete"
- name="autoDeleteAfter">
- <label for="file-singleton">
- <input type="checkbox" name="singleton" id="file-singleton">
- Delete after first open</label>
- <input type="submit">
- </form>
- </details>
- <details>
- <summary>Upload some text</summary>
- <form action="/text" method="post">
- <textarea id="text" name="text" required></textarea>
- <label for="text-password">Mimetype (default: text/plain)</label>
- <input type="password" name="mime" id="text-mimetype">
- <label for="text-password">Password (optional)</label>
- <input type="password" name="password" id="text-password">
- <label for="text-auto-delete">
- Automatically delete after (optional)
- <span class="label-description"
- title="blank=never, <number><unit>, unit can be d=day,w=week,h=hour,m=minute">?</span>
- </label>
- <input type="text"
- id="text-auto-delete"
- name="autoDeleteAfter">
- <label for="text-singleton">
- <input type="checkbox" id="text-singleton" name="singleton">
- Delete after first open</label>
- <input type="submit">
- </form>
- </details>
-</main>
-</body>
-</html> \ No newline at end of file