aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsource/auth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/auth.py b/source/auth.py
index 8dc2a0d1..5e3243f4 100755
--- a/source/auth.py
+++ b/source/auth.py
@@ -186,7 +186,7 @@ class AuthController(object):
<form method="post" action="/auth/login">
<input type="hidden" name="from_page" value="%(from_page)s" />
%(msg)s<br />
- <input type="text" name="username" value="%(username)s" placeholder="Username" /><br />
+ <input type="text" name="username" value="%(username)s" placeholder="Username" autofocus="autofocus" /><br />
<input type="password" name="password" placeholder="Password" /><br />
<input type="submit" value="Log in" />
</form>
bgstack15