18 lines
469 B
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>
|