Spaces:
Configuration error
Configuration error
<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> | |