fix SimpleLogin brand name

This commit is contained in:
devStorm 2020-05-07 02:34:19 -07:00
parent 3ab3f819b7
commit c38b3c768c
No known key found for this signature in database
GPG key ID: D52E1B66F336AC57
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@
{% block default_content %}
<div class="bg-white p-6" style="max-width: 60em; margin: auto">
<h1 class="h2 text-center">Register Your Security Key</h1>
<p class="text-center">Follow your browser's steps to register your security key with Simple Login</p>
<p class="text-center">Follow your browser's steps to register your security key with SimpleLogin</p>
<form id="formRegisterKey" method="post">
{{ fido_token_form.csrf_token }}

View file

@ -70,7 +70,7 @@ def fido_setup():
challenge = secrets.token_urlsafe(32)
credential_create_options = webauthn.WebAuthnMakeCredentialOptions(
challenge, 'Simple Login', RP_ID, fido_uuid,
challenge, 'SimpleLogin', RP_ID, fido_uuid,
current_user.email, current_user.name, False, attestation='none')
# Don't think this one should be used, but it's not configurable by arguments