aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/templates/upload.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/upload.html')
-rw-r--r--templates/upload.html16
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