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,10 @@
{% extends "layout.html" %}
{% block body %}
<h2>Overview</h2>
{% if g.user %}
<p>
Hello {{ g.user.name }}!
{% endif %}
<p>
This is just an example page so that something is here.
{% endblock %}