summaryrefslogtreecommitdiff
path: root/httemplate/loginout
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2022-09-07 17:22:51 -0700
committerIvan Kohler <ivan@freeside.biz>2022-09-07 17:22:51 -0700
commit26ddb940ad27ce8ac5e87084eeed857a390987bc (patch)
tree3d6e1c46d8d703a1c6bb63820ab741d6a67ab506 /httemplate/loginout
parent691de38ac2ca6c54b37feb50e1332bab6268773f (diff)
google authenticator support, RT#86743
Diffstat (limited to 'httemplate/loginout')
-rw-r--r--httemplate/loginout/login.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/httemplate/loginout/login.html b/httemplate/loginout/login.html
index 72e9525c4..1785ea796 100644
--- a/httemplate/loginout/login.html
+++ b/httemplate/loginout/login.html
@@ -27,6 +27,10 @@
<TD ALIGN="right">Password: </TD>
<TD><INPUT TYPE="password" NAME="credential_1" SIZE="13"></TD>
</TR>
+ <TR>
+ <TD ALIGN="right">One-time code: </TD>
+ <TD><INPUT TYPE="text" NAME="credential_2" SIZE="13"></TD>
+ </TR>
</TABLE>
<BR>
@@ -42,7 +46,7 @@
my %error = (
'no_cookie' => '', #First login, don't display an error
'bad_cookie' => 'Bad Cookie', #timed out?
- 'bad_credentials' => 'Incorrect username / password',
+ 'bad_credentials' => 'Incorrect username / password / one-time code',
#'logout' => 'You have been logged out.',
);