comparison frontend/mfrontend/templates/register.html @ 7:d86794939fe4

Rejestracja użytkowników
author Michał Rudowicz <michal.rudowicz@fl9.eu>
date Mon, 28 Feb 2011 11:34:20 +0100
parents
children
comparison
equal deleted inserted replaced
6:27d63cac76ac 7:d86794939fe4
1 {% extends "layout.html" %}
2 {% block body %}
3 <h2>Rejestracja użytkowników</h2>
4 {% if error %}<p class=error><strong>Błąd:</strong> {{ error }}{% endif %}
5 <form action="{{ url_for('register') }}" method=post>
6 <dl>
7 <dt>Nazwa użytkownika:
8 <dd><input type=text name=username>
9 <dt>Hasło:
10 <dd><input type=password name=password>
11 <dd><input type=submit value=Rejestruj>
12 </dl>
13 </form>
14 {% endblock %}