diff --git a/r2/r2/templates/captcha.html b/r2/r2/templates/captcha.html index df00f6f50..d175180e3 100644 --- a/r2/r2/templates/captcha.html +++ b/r2/r2/templates/captcha.html @@ -53,7 +53,7 @@ ${rounded_captcha()} %utils:round_field> %def> -<%def name="captchagen(iden, error='', tabulate=False, tabular = True, size=60, label=True, show_error = True)"> +<%def name="captchagen(iden, error='', tabulate=False, tabular = True, size=60, label=True, show_error = True, tabindex = None)"> %if tabulate:
| diff --git a/r2/r2/templates/login.html b/r2/r2/templates/login.html index c8eb83098..e416b9700 100644 --- a/r2/r2/templates/login.html +++ b/r2/r2/templates/login.html @@ -47,6 +47,7 @@ <% op = "reg" if register else "login" base = g.https_endpoint if not c.cname else '' + tabindex = 3 if register else 2 %> |