diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-11-17 19:21:18 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-11-17 19:21:18 +0800 |
commit | 73010f9fd19ff6763422fc5779f2915dca0fe190 (patch) | |
tree | d848ae0e301c4dc4b4f11545ac73656a8c3eb86e | |
parent | 4967e163f4ae6b1d679e14821096f2617c954c8e (diff) | |
download | fg21sim-73010f9fd19ff6763422fc5779f2915dca0fe190.tar.bz2 |
webui: login.html: Auto focus the password input
-rw-r--r-- | fg21sim/webui/templates/login.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fg21sim/webui/templates/login.html b/fg21sim/webui/templates/login.html index e0e98da..22debbd 100644 --- a/fg21sim/webui/templates/login.html +++ b/fg21sim/webui/templates/login.html @@ -22,7 +22,7 @@ <span class="label label-warning">{{ error }}</span> {% end %} </label> - <input class="form-control" type="password" id="password" name="password" required /> + <input class="form-control" type="password" id="password" name="password" required autofocus /> <button type="submit">Login</button> </fieldset> </form> |