forked from orbit-oss/flask
12 lines
326 B
HTML
12 lines
326 B
HTML
{% 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 %}
|