Added OpenID example

This commit is contained in:
Armin Ronacher 2010-05-04 11:23:01 +02:00
parent 67fc465262
commit bc0c0559e3
9 changed files with 390 additions and 0 deletions

View file

@ -0,0 +1,16 @@
{% extends "layout.html" %}
{% block title %}Edit Profile{% endblock %}
{% block body %}
<h2>Edit Profile</h2>
<form action="" method=post>
<dl>
<dt>Name:
<dd><input type=text name=name size=30 value="{{ form.name }}">
<dt>E-Mail
<dd><input type=text name=email size=30 value="{{ form.email }}">
</dl>
<p>
<input type=submit value="Update profile">
<input type=submit name=delete value="Delete">
</form>
{% endblock %}