Files
computer-science-flash-cards/templates/layout.html
2016-06-30 19:03:09 -07:00

20 lines
651 B
HTML

<!doctype html>
<title>CS Flash Cards</title>
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='style.css') }}">
<div class=page>
<h1>CS Flash Cards</h1>
<div class=metanav>
{% if not session.logged_in %}
<a href="{{ url_for('login') }}">log in</a>
{% else %}
<a href="{{ url_for('cards') }}">cards</a>
&nbsp;
&nbsp;
<a href="{{ url_for('logout') }}">log out</a>
{% endif %}
</div>
{% for message in get_flashed_messages() %}
<div class=flash>{{ message }}</div>
{% endfor %}
{% block body %}{% endblock %}
</div>