Make username box autofocus

This commit is contained in:
Starbeamrainbowlabs 2016-04-09 11:02:25 +01:00
parent e95f4f1e0d
commit 6e21a2aba6
3 changed files with 6 additions and 6 deletions

View File

@ -3719,7 +3719,7 @@ function generate_page_list($pagelist)
register_module([
"name" => "Login",
"version" => "0.8",
"version" => "0.8.1",
"author" => "Starbeamrainbowlabs",
"description" => "Adds a pair of actions (login and checklogin) that allow users to login. You need this one if you want your users to be able to login.",
"id" => "page-login",
@ -3750,7 +3750,7 @@ register_module([
$content .= "\t\t<p><em>$settings->sitename requires that you login before continuing.</em></p>\n";
$content .= "\t\t<form method='post' action='$login_form_action_url'>
<label for='user'>Username:</label>
<input type='text' name='user' id='user' />
<input type='text' name='user' id='user' autofocus />
<br />
<label for='pass'>Password:</label>
<input type='password' name='pass' id='pass' />

View File

@ -136,11 +136,11 @@
},
{
"name": "Login",
"version": "0.8",
"version": "0.8.1",
"author": "Starbeamrainbowlabs",
"description": "Adds a pair of actions (login and checklogin) that allow users to login. You need this one if you want your users to be able to login.",
"id": "page-login",
"lastupdate": 1450705429,
"lastupdate": 1460196125,
"optional": false
},
{

View File

@ -1,7 +1,7 @@
<?php
register_module([
"name" => "Login",
"version" => "0.8",
"version" => "0.8.1",
"author" => "Starbeamrainbowlabs",
"description" => "Adds a pair of actions (login and checklogin) that allow users to login. You need this one if you want your users to be able to login.",
"id" => "page-login",
@ -32,7 +32,7 @@ register_module([
$content .= "\t\t<p><em>$settings->sitename requires that you login before continuing.</em></p>\n";
$content .= "\t\t<form method='post' action='$login_form_action_url'>
<label for='user'>Username:</label>
<input type='text' name='user' id='user' />
<input type='text' name='user' id='user' autofocus />
<br />
<label for='pass'>Password:</label>
<input type='password' name='pass' id='pass' />