This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
1 |
<!doctype html> |
2 |
<title>Swtr</title> |
3 |
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='style.css') }}"> |
4 |
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='bootstrap.min.css') }}"> |
5 |
<div class=page> |
6 |
<h1>Swtrr</h1> |
7 |
<div class=metanav> |
8 |
{% if not session.logged_in %} |
9 |
<a href="{{ url_for('login') }}">log in</a> |
10 |
{% else %} |
11 |
<a href="{{ url_for('logout') }}">log out</a> |
12 |
{% endif %} |
13 |
</div> |
14 |
{% for message in get_flashed_messages() %} |
15 |
<div class=flash>{{ message }}</div> |
16 |
{% endfor %} |
17 |
{% block body %}{% endblock %} |
18 |
</div> |