31 lines
744 B
HTML
31 lines
744 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="ru">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>COVID-19 Some statistics</title>
|
||
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
||
|
</head>
|
||
|
<body>
|
||
|
<p>Some statistics</p>
|
||
|
<img src="{{ url_for('static', filename='img/covid19.png') }}"
|
||
|
alt="Img" width="300">
|
||
|
<!-- alt="Img" width="300" height="300">-->
|
||
|
|
||
|
<form action="" method="post">
|
||
|
<p>
|
||
|
<label for="input_date">Input date (YYYY-MM-DD)</label>
|
||
|
<input type="text" name="input_date">
|
||
|
<input type="submit" value="Show">
|
||
|
</p>
|
||
|
<!-- <p>-->
|
||
|
<!-- <input type="submit" value="Show">-->
|
||
|
<!-- </p>-->
|
||
|
</form>
|
||
|
{{ message }}
|
||
|
|
||
|
</body>
|
||
|
</html>
|
||
|
<!--<script>-->
|
||
|
<!-- alert('Эй!')-->
|
||
|
<!--</script>-->
|