wordle/templates/layout.html
2022-01-18 21:52:14 +01:00

47 lines
977 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>pi2-wordle</title>
<style>
body {
font-family: monospace;
background-color: black;
font-size: 26px;
color: white;
}
ul {
list-style-type: none;
margin: 10px;
}
ul li {
margin-bottom: 30px;
}
.letter {
background-color: black;
border: 1px solid grey;
padding: 10px;
}
input {
font-family: monospace;
padding: 10px;
font-size: 26px;
}
</style>
</head>
<body>
{% with messages = get_flashed_messages() %}
{% if messages %}
<ul>
{% for message in messages %}
<li style="color:red;">{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
{% block body %}{% endblock %}
</body>
</html>