diff options
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 |
