flask/flask_website/templates/general/change_openid.html
2010-05-16 14:33:32 +02:00

31 lines
1,000 B
HTML

{% extends "layout.html" %}
{% block head %}
{{ super() }}
<style type=text/css>
h1 { background-image: url({{ url_for('.static', filename='profile.png') }}); }
</style>
{% endblock %}
{% block title %}Change OpenID{% endblock %}
{% block body %}
<h2>Change OpenID</h2>
<form action="" method=post>
<p>
You can the OpenID used to log into this website. Right
now your OpenID identity is
<a href="{{ g.user.openid }}">{{ g.user.openid|displayopenid }}</a>
<p>
OpenID URL:
<input type=text name=openid class=openid size=26>
<input type=hidden name=next value="{{ next }}">
<input type=submit value=Change>
<input type=submit name=cancel value=Cancel>
<p>
Alternatively you can directly link your profile with one
of the common id providers:
<ul>
<li><a href=?provider=aol>AOL</a>
<li><a href=?provider=google>Google</a>
<li><a href=?provider=yahoo>Yahoo</a>
</ul>
</form>
{% endblock %}