diff options
| author | 2024-08-16 15:23:07 +0800 | |
|---|---|---|
| committer | 2024-08-16 15:23:07 +0800 | |
| commit | ee281cb6ef11b8e115e02032a7c899927d2e92e5 (patch) | |
| tree | ec83b3b57920b181c6c988bc6901a3730f725506 /templates/files.html | |
| parent | 0817897398dd3ef7f0738838b20cc6c1e67db323 (diff) | |
| download | files-ee281cb6ef11b8e115e02032a7c899927d2e92e5.tar.gz files-ee281cb6ef11b8e115e02032a7c899927d2e92e5.zip | |
chore: init project
Diffstat (limited to 'templates/files.html')
| -rw-r--r-- | templates/files.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/files.html b/templates/files.html new file mode 100644 index 0000000..5095242 --- /dev/null +++ b/templates/files.html @@ -0,0 +1,17 @@ +<!doctype html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>Uploaded Files</title> +</head> +<body> + <h1>Uploaded Files</h1> + <ul> + {% for file in files %} + <li><a href="{{ url_for('file_info', filename=file) }}">{{ file }}</a></li> + {% endfor %} + </ul> + <a href="{{ url_for('upload_file') }}">Upload More Files</a> + <a href="{{ url_for('logout') }}">Logout</a> +</body> +</html>
\ No newline at end of file |
