Addressed issue #1134

This commit is contained in:
Jeffrey D 2014-07-29 20:42:28 -05:00
parent f6618c7638
commit 3c48bf8935
11 changed files with 52 additions and 52 deletions

View file

@ -1,9 +1,9 @@
<!doctype html>
<title>Flaskr</title>
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='style.css') }}">
<div class=page>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
<div class="page">
<h1>Flaskr</h1>
<div class=metanav>
<div class="metanav">
{% if not session.logged_in %}
<a href="{{ url_for('login') }}">log in</a>
{% else %}
@ -11,7 +11,7 @@
{% endif %}
</div>
{% for message in get_flashed_messages() %}
<div class=flash>{{ message }}</div>
<div class="flash">{{ message }}</div>
{% endfor %}
{% block body %}{% endblock %}
</div>