24 lines
515 B
HTML
24 lines
515 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script>"jquery-3.6.0.min.js"</script>
|
|
</head>
|
|
<form method="POST">
|
|
<input name="text">
|
|
<input type="submit">
|
|
</form>
|
|
|
|
<body>
|
|
<h1>{{ title }}</h1>
|
|
<section class="row">
|
|
{% for image in plots %}
|
|
<section class="col-md-4 col-sm-6" style="background-color: green;">
|
|
<a href="{{ url_for('static', filename='plots/' + image) }}">{{ image }}</a>
|
|
</section>
|
|
{% endfor %}
|
|
</section>
|
|
</body>
|
|
|
|
</html> |