IIS_2023_1/savenkov_alexander_lab_1/templates/index.html

18 lines
469 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Сравнение моделей</title>
</head>
<body>
<h1>Сравнение моделей</h1>
<form action="/compare_models" method="POST">
<button type="submit">Сравнить модели</button>
</form>
<br>
{% if result %}
<h2>Графики моделей</h2>
<img src="static/models_comparison.png" alt="Графики моделей">
{% endif %}
</body>
</html>