diff options
| author | 2024-08-16 15:23:07 +0800 | |
|---|---|---|
| committer | 2024-08-16 15:23:07 +0800 | |
| commit | ee281cb6ef11b8e115e02032a7c899927d2e92e5 (patch) | |
| tree | ec83b3b57920b181c6c988bc6901a3730f725506 /templates/upload.html | |
| parent | 0817897398dd3ef7f0738838b20cc6c1e67db323 (diff) | |
| download | files-ee281cb6ef11b8e115e02032a7c899927d2e92e5.tar.gz files-ee281cb6ef11b8e115e02032a7c899927d2e92e5.zip | |
chore: init project
Diffstat (limited to 'templates/upload.html')
| -rw-r--r-- | templates/upload.html | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/upload.html b/templates/upload.html new file mode 100644 index 0000000..e024330 --- /dev/null +++ b/templates/upload.html @@ -0,0 +1,16 @@ +<!doctype html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <title>Upload File</title> +</head> +<body> + <h1>Upload File</h1> + <form method="post" enctype="multipart/form-data"> + <input type="file" name="file" required> + <button type="submit">Upload</button> + </form> + <a href="{{ url_for('uploaded_files') }}">View Uploaded Files</a> + <a href="{{ url_for('logout') }}">Logout</a> +</body> +</html>
\ No newline at end of file |
