32 lines
843 B
HTML
32 lines
843 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>File Uploads</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
|
|
</head>
|
|
<body>
|
|
<div class="app">
|
|
|
|
<div class="form-section">
|
|
|
|
<form action="/upload" method="post" enctype="multipart/form-data">
|
|
<input type="file" name="file">
|
|
<input type="submit" value="Upload">
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<div class="images-section">
|
|
{% for image in images %}
|
|
<a href="{{ url_for('serve_image', filename=image) }}" target="_blank">
|
|
<img src="{{ url_for('serve_image', filename=image) }}"/>
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
</div>
|
|
</body>
|
|
</html> |