mirror of https://github.com/mitsuhiko/flask.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
326 B
13 lines
326 B
15 years ago
|
{% 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 %}
|