diff --git a/hc/accounts/tests/test_login_webauthn.py b/hc/accounts/tests/test_login_webauthn.py index fad949b5..f74e55d6 100644 --- a/hc/accounts/tests/test_login_webauthn.py +++ b/hc/accounts/tests/test_login_webauthn.py @@ -21,7 +21,7 @@ class LoginWebAuthnTestCase(BaseTestCase): def test_it_shows_form(self): r = self.client.get(self.url) self.assertContains(r, "Waiting for security key") - self.assertNotContains(r, "Use the authenticator app instead?") + self.assertNotContains(r, "Use authenticator app") # It should put a "state" key in the session: self.assertIn("state", self.client.session) @@ -31,7 +31,7 @@ class LoginWebAuthnTestCase(BaseTestCase): self.profile.save() r = self.client.get(self.url) - self.assertContains(r, "Use the authenticator app instead?") + self.assertContains(r, "Use authenticator app") def test_it_requires_unauthenticated_user(self): self.client.login(username="alice@example.org", password="password") diff --git a/static/js/login_tfa.js b/static/js/login_tfa.js index bbba6fc8..57a1548a 100644 --- a/static/js/login_tfa.js +++ b/static/js/login_tfa.js @@ -9,6 +9,7 @@ $(function() { } function authenticate() { + $("#pick-method").addClass("hide"); $("#waiting").removeClass("hide"); $("#error").addClass("hide"); @@ -30,8 +31,6 @@ $(function() { }); } + $("#use-key-btn").click(authenticate); $("#retry").click(authenticate); - - authenticate(); - }); diff --git a/templates/accounts/login_totp.html b/templates/accounts/login_totp.html index 0cb59f2b..07eb5c16 100644 --- a/templates/accounts/login_totp.html +++ b/templates/accounts/login_totp.html @@ -17,8 +17,8 @@ type="text" name="code" pattern="[0-9]{6}" - title="six-digit code" - placeholder="123456" + title="6-digit code" + placeholder="6-digit code" class="form-control input-lg" /> {% if form.code.errors %}
Please select how you want to authenticate.
+ {% else %} +
+ Please authenticate using your security key.
+ When you are ready, press the button below.
+
- - Use the authenticator app instead? - -
- {% endif %} -