Commit 447f741d by James Henstridge

Fix up the OpenID logo thingee again.

parent cee93276
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<title>Sign in with your OpenID</title> <title>Sign in with your OpenID</title>
<style type="text/css"> <style type="text/css">
input.openid { input.openid {
background: url({{ logo }}) no-repeat; background: url({% url openid-logo %}) no-repeat;
background-position: 0 50%; background-position: 0 50%;
padding-left: 16px; padding-left: 16px;
} }
......
from django.conf.urls.defaults import patterns from django.conf.urls.defaults import *
urlpatterns = patterns('django_openid_auth.views', urlpatterns = patterns('django_openid_auth.views',
(r'^login$', 'login_begin'), (r'^login$', 'login_begin'),
(r'^complete$', 'login_complete'), (r'^complete$', 'login_complete'),
url(r'^logo$', 'logo', name='openid-logo'),
) )
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment