New task - password confirmation

This commit is contained in:
PovilasKorop
2021-11-01 08:36:28 +02:00
parent 355d40f627
commit 0240281ef9
4 changed files with 48 additions and 1 deletions
+12 -1
View File
@@ -67,4 +67,15 @@ You need to make changes to two files.
In file `routes/web.php` add a Middleware to `/secretpage` URL.
And enable email verification in the `app/Models/User.php` file.
Test method: `test_email_can_be_verified()`.
Test method: `test_email_can_be_verified()`.
---
## Task 6. Password Confirmation.
Make the URL `/verysecretpage` redirect to a page to re-enter their password once again.
In file `routes/web.php` add a Middleware to that URL.
Test method: `test_password_confirmation_page()`.
---