faflask / templates /upload.html
getad72493's picture
Upload 5 files
009f602 verified
raw
history blame
602 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Upload Images</title>
</head>
<body>
<h1>Upload Images</h1>
<form action="{{ url_for('upload') }}" method="POST" enctype="multipart/form-data">
<label for="file">Choose Image(s):</label>
<input type="file" name="file" multiple><br><br>
<button type="submit">Upload</button>
</form>
<footer>
<a href="{{ url_for('index') }}">Back to Gallery</a>
</footer>
</body>
</html>