view frontend/mfrontend/templates/layout.html @ 7:d86794939fe4

Rejestracja użytkowników
author Michał Rudowicz <michal.rudowicz@fl9.eu>
date Mon, 28 Feb 2011 11:34:20 +0100
parents 79fc37fe85a6
children 9a0a9fa7f91d
line wrap: on
line source

 <!doctype html>
<title>NASZA APLIKACJA!</title>
<div class=page>
  <h1>NO HEJ</h1>
  <div class=metanav>
  {% if not session.logged_in %}
  <a href="{{ url_for('login') }}">Zaloguj się</a> | 
  <a href="{{ url_for('register') }}">Załóż konto</a>
  {% else %}
    <a href="{{ url_for('logout') }}">Wyloguj się</a>
  {% endif %}
  </div>
  {% for message in get_flashed_messages() %}
    <div class=flash>{{ message }}</div>
  {% endfor %}
  {% block body %}{% endblock %}
</div>