diff --git a/README.md b/README.md index 2953966..967ceae 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # django-mfa2 -A Django app that handles MFA, it supports TOTP, U2F, FIDO2 U2F (Web Authn), Email Tokens , and Trusted Devices +A Django app that handles MFA, it supports TOTP, U2F, FIDO2 U2F (Web Authn), Email Tokens , Trusted Devices and backup codes. ### Pip Stats [![PyPI version](https://badge.fury.io/py/django-mfa2.svg)](https://badge.fury.io/py/django-mfa2) @@ -91,6 +91,7 @@ Depends on * TOTP * Trusted_Devices * Email + * RECOVERY **Notes**: * Starting version 1.1, ~~FIDO_LOGIN_URL~~ isn't required for FIDO2 anymore. @@ -136,7 +137,7 @@ Depends on ```
  • Security
  • ``` -For Example, See 'example' app +For Example, See 'example' app and look at EXAMPLE.md to see how to set it up. # Going Passwordless diff --git a/mfa/templates/RECOVERY/Add.html b/mfa/templates/RECOVERY/Add.html index 09782a9..4f419ad 100644 --- a/mfa/templates/RECOVERY/Add.html +++ b/mfa/templates/RECOVERY/Add.html @@ -8,12 +8,20 @@ border-radius: 3px; padding: 15px; } + .tokenrow{ + margin-top: 10px; + margin-left: 5px; + } .row{ - margin: 0px; + margin: 3px; } .crossed{ text-decoration: line-through; } + + .return{ + margin: 1px; + }