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

20 lines
769 B
HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<title>Ты котя?</title>
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="{{ url_for('static', filename='css/index.css')}}">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
{% include 'bootstrap.html' %}
</head>
<body>
<div class="container main">
<div class="kotya">
<h1>Ты котя?</h1>
<button class="btn btn-primary" id="yesbtn" onClick="window.location.href='{{ url_for( 'yespressed' ) }}';">Да</button>
<button class="btn btn-primary" id="nobtn" onClick="window.location.href='{{ url_for( 'nopressed' ) }}';">Нет</button>
</div>
</div>
</body>
</html>