From a3009452fae296220d3d9fb51783d586434aeaea Mon Sep 17 00:00:00 2001 From: Sebastian Spaeth Date: Mon, 26 Nov 2012 21:38:29 +0100 Subject: [PATCH] Autofocus the username field on user creation On a page with the single purpose to enter new user data, we should auto-focus the username field. It is very annoying to have to click in that field before starting to type. Theoretically, there is the "autofocus" attribute in html5, but IE does not support that. Signed-off-by: Sebastian Spaeth --- mediagoblin/templates/mediagoblin/auth/register.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mediagoblin/templates/mediagoblin/auth/register.html b/mediagoblin/templates/mediagoblin/auth/register.html index a2505cb9..6dff0207 100644 --- a/mediagoblin/templates/mediagoblin/auth/register.html +++ b/mediagoblin/templates/mediagoblin/auth/register.html @@ -42,4 +42,6 @@ + + {% endblock %} -- 2.25.1