diff options
author | Mark Sapiro <msapiro@value.net> | 2012-03-24 18:23:57 -0700 |
---|---|---|
committer | Mark Sapiro <msapiro@value.net> | 2012-03-24 18:23:57 -0700 |
commit | fbf25ca208265ed0b2a39aa29a198e2ca180eeeb (patch) | |
tree | 4f0e44298e2b296f9efcecd35359a813e5597770 /templates/eu | |
parent | 279fc1d3953a2ab01934c71219d21ade7ebaff75 (diff) | |
download | mailman2-fbf25ca208265ed0b2a39aa29a198e2ca180eeeb.tar.gz mailman2-fbf25ca208265ed0b2a39aa29a198e2ca180eeeb.tar.xz mailman2-fbf25ca208265ed0b2a39aa29a198e2ca180eeeb.zip |
Added javascript to the private.html and admlogin.html templates to
focus the cursor on the entry field. (LP: #266054)
Diffstat (limited to 'templates/eu')
-rw-r--r-- | templates/eu/admlogin.html | 5 | ||||
-rw-r--r-- | templates/eu/private.html | 5 |
2 files changed, 6 insertions, 4 deletions
diff --git a/templates/eu/admlogin.html b/templates/eu/admlogin.html index 32d4a250..21b3e851 100644 --- a/templates/eu/admlogin.html +++ b/templates/eu/admlogin.html @@ -1,9 +1,10 @@ <html> <head> <title>%(listname)s Zerrendako %(who)s Identifikatzen</title> + <script>function sf(){document.f.adminpw.focus();}</script> </head> -<body bgcolor="#ffffff"> -<FORM METHOD=POST ACTION="%(path)s"> +<body bgcolor="#ffffff" onLoad="sf()"> +<FORM METHOD=POST ACTION="%(path)s" name="f"> %(message)s <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5"> <TR> diff --git a/templates/eu/private.html b/templates/eu/private.html index 00978e5f..b35733fe 100644 --- a/templates/eu/private.html +++ b/templates/eu/private.html @@ -1,9 +1,10 @@ <html> <head> <title>%(realname)s Artxibo Pribatuak Egiaztatzea</title> + <script>function sf(){document.f.username.focus();}</script> </head> -<body bgcolor="#ffffff"> -<FORM METHOD=POST ACTION="%(action)s"> +<body bgcolor="#ffffff" onLoad="sf()"> +<FORM METHOD=POST ACTION="%(action)s" name="f"> %(message)s <TABLE WIDTH="100%%" BORDER="0" CELLSPACING="4" CELLPADDING="5"> <TR> |