Files
kotyaFlask/templates/nopage.html
2020-05-10 04:59:27 +03:00

25 lines
706 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<meta charset="UTF-8">
<html lang="ru">
<head>
<link rel="stylesheet" href="{{ url_for('static', filename='css/nopage.css')}}">
<link href="https://fonts.googleapis.com/css?family=Pattaya&display=swap" rel="stylesheet">
{%include 'bootstrap.html'%}
<title>Жаль</title>
</head>
<body>
<div class="container-fluid">
<div class="row">
<img src="{{url_for('static', filename='img/bear.jpg')}}">
</div>
<div class="row">
<h1>Жаль, я ждал свою Котю.</h1>
</div>
<div class="row">
<button class="btn btn-primary" id="backbtn" onClick="window.location.href='{{ url_for( 'index' ) }}';">На главную</button>
</div>
</div>
</body>
</html>