{% extends "base.html" %} {% block pagetitle %}Login{% endblock %} {% block pageheader %}Login{% endblock %} {% block content %}
Note: OpenID login is the only login method we support, in the best interest of our users.
{% csrf_token %}
https://www.google.com/accounts/o8/id
{% csrf_token %}
http://yahoo.com
{% csrf_token %}
.wordpress.com
{% csrf_token %}
.myopenid.com
{% csrf_token %}
.livejournal.com
{% csrf_token %}
myspace.com/
{% csrf_token %}
launchpad.net/~
{% csrf_token %}

If your favourite OpenID provider is not in the list above, you can enter its URL directly:

if you don't know the URL of your OpenID provider, this page might help: {{ 'http://en.wikipedia.org/wiki/OpenID'|urlize }}

{% endblock %} {% block ready %} $('.openid-form').bind('submit', function(e) { var username = $(this).find('input.username').val(); var openid_provider_url = $(this).find('input[name="openid_identifier"]').val().replace('__username__', username); $(this).find('input[name="openid_identifier"]').val(openid_provider_url); //e.preventDefault(); }); {% endblock %}