blob: e024330d8d1cb6e92afbaf4ada76c0b24e4cac98 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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>
|