UpFast/templates/index.html

54 lines
1.2 KiB
HTML
Raw Normal View History

2023-11-01 16:32:47 +01:00
<!doctype html>
2023-03-23 21:00:39 +01:00
<html lang="en">
2023-11-01 16:32:47 +01:00
2023-03-23 21:00:39 +01:00
<head>
2023-11-01 16:32:47 +01:00
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="{{ url_for('static', path='/css/style.css') }}" rel="stylesheet" />
<title>UpFast</title>
2023-03-23 21:00:39 +01:00
</head>
2023-11-01 16:32:47 +01:00
2023-03-23 21:00:39 +01:00
<body>
2023-11-01 16:32:47 +01:00
<h1>UpFast: Minimal file upload and sharing tool</h1>
2023-03-23 21:00:39 +01:00
2023-11-01 16:32:47 +01:00
<p>
<a href="https://0x0.st">0x0.st</a> Influenced file upload and sharing
tool
</p>
2023-03-23 21:00:39 +01:00
2023-11-01 16:32:47 +01:00
<p>
To upload files use curl:
<code>curl -F "file=@/path/to/file" "{{ request.url }}"</code>
</p>
2023-03-23 21:00:39 +01:00
2023-11-01 16:32:47 +01:00
<p>
To delete a file using curl:
<code>curl "{{ request.url }}delete/file_name"</code>
</p>
2023-03-23 21:00:39 +01:00
2023-11-01 16:32:47 +01:00
{% if upload_only %}
<p>
NOTE: This is an upload only instance, if you wan't a file on the instance
deleted ask the hoster to delete the file.
</p>
{% endif %}
2023-03-23 21:00:39 +01:00
2023-11-01 16:32:47 +01:00
<p>
To get of all files hosted on the instance check
<a href="/files">files</a>
</p>
2023-03-23 21:00:39 +01:00
2023-11-01 16:32:47 +01:00
<p>
Created and maintained by
<a href="https://cronyakatsuki.xyz">Crony Akatsuki</a>
</p>
2023-03-23 21:00:39 +01:00
2023-11-01 16:32:47 +01:00
<p>
Code is hosted on
<a href="https://code.cronyakatsuki.xyz/crony/upfast">https://code.cronyakatsuki.xyz/crony/upfast</a>
</p>
2023-03-23 21:00:39 +01:00
</body>
2023-11-01 16:32:47 +01:00
2023-03-23 21:00:39 +01:00
</html>