33 lines
834 B
HTML
33 lines
834 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link
|
|
rel="stylesheet"
|
|
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css"
|
|
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk"
|
|
crossorigin="anonymous"
|
|
/>
|
|
<link rel="stylesheet" type="text/css" href="static/layout.css" />
|
|
{% block head %}
|
|
<title>Berserker's Multiworld</title>
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
|
|
{% with messages = get_flashed_messages() %}
|
|
{% if messages %}
|
|
<div>
|
|
{% for message in messages %}
|
|
<div class="alert alert-danger" role="alert">{{ message }}</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
{% block body %}
|
|
{% endblock %}
|
|
|
|
</body>
|
|
</html>
|