Mercurial > kraina_muminkow
view frontend/mfrontend/templates/register.html @ 11:69ecfe51d585
Dodałem prosty prototyp API
author | Michał Rudowicz <michal.rudowicz@fl9.eu> |
---|---|
date | Mon, 07 Mar 2011 11:04:11 +0100 |
parents | d86794939fe4 |
children |
line wrap: on
line source
{% extends "layout.html" %} {% block body %} <h2>Rejestracja użytkowników</h2> {% if error %}<p class=error><strong>Błąd:</strong> {{ error }}{% endif %} <form action="{{ url_for('register') }}" method=post> <dl> <dt>Nazwa użytkownika: <dd><input type=text name=username> <dt>Hasło: <dd><input type=password name=password> <dd><input type=submit value=Rejestruj> </dl> </form> {% endblock %}