From 3940d6a4ac61ad36ac6936d20c4018939c44b70c Mon Sep 17 00:00:00 2001 From: DarkGhostHunter Date: Sat, 4 Jul 2020 02:21:15 -0400 Subject: [PATCH] Fixed some typos and phrasing. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 62c048f..f801535 100644 --- a/README.md +++ b/README.md @@ -522,7 +522,7 @@ $this->app->bind(CounterChecker::class, function () { }); ``` -Then, you can add your logic to . +Inside your counter checker, you may want to throw an exception if the counter is below what is reported. ```php To blacklist a device, use `disableDevice()` in the user instance. +> To blacklist a device, use `disableDevice()` in the user instance. That allows the user to re-enable it when he recovers the device. * **How secure is this against passwords or 2FA?** @@ -556,9 +556,9 @@ Extremely secure since it works only on HTTPS, and no password or codes are exch * **Can I deactivate the password fallback? Can I enforce only WebAuthn authentication?** -Yes. Just be sure to disable the password column in the users table, the Password Broker, and have some logic to register new devices and invalidate old ones. The [`WebAuthnAuthentication`](src/WebAuthnAuthentication.php) trait helps with this. +Yes. Just be sure to disable the password column in the users table, the Password Broker, and have some logic to recover the account with new devices and invalidate old ones. The [`WebAuthnAuthentication`](src/WebAuthnAuthentication.php) trait helps with this. -* **Does this includes Javascript?** +* **Does this includes a frontend Javascript?** [Yes.](#5-frontend-integration)