Files
kotyaFlask/templates/yespage.html
danamir 869463d68b bugfix
2020-05-10 20:00:36 +03:00

28 lines
849 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>
<html lang="ru">
<head>
<link rel="stylesheet" href="{{ url_for('static', filename='css/yespage.css')}}">
<link href="https://fonts.googleapis.com/css?family=Pattaya&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
{%include 'bootstrap.html'%}
<title>Да, ты Котя</title>
</head>
<body>
<div class="container-fluid">
<div class="row">
<img src="{{url_for('static', filename='img/love2.jpg')}}">
</div>
<div class="row ">
<h1>ТЬМООООООК</h1>
</div>
<div class="row ">
<h2>Мы вместе {{days}} дней </h>
</div>
<div class="row">
<button class="btn btn-primary" id="backbtn" onClick="window.location.href='{{ url_for( 'index' ) }}';">На главную</button>
</div>
</div>
</body>
</html>