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,12 @@
{% extends "layout.html" %}
{% block title %}Sign in{% endblock %}
{% block body %}
<h2>Sign in</h2>
<form action="" method=post>
<p>
OpenID:
<input type=text name=openid size=30>
<input type=submit value="Sign in">
<input type=hidden name=next value="{{ next_url }}">
</form>
{% endblock %}