Spaces:
Configuration error
Configuration error
File size: 602 Bytes
009f602 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
<!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>
|