diff --git a/Web-Application/Fortify/app/Providers/FortifyServiceProvider.php b/Web-Application/Fortify/app/Providers/FortifyServiceProvider.php index 6fcce1f..1722cda 100644 --- a/Web-Application/Fortify/app/Providers/FortifyServiceProvider.php +++ b/Web-Application/Fortify/app/Providers/FortifyServiceProvider.php @@ -55,5 +55,13 @@ class FortifyServiceProvider extends ServiceProvider Fortify::verifyEmailView(function () { return view('auth.verify-mail'); }); + + Fortify::requestPasswordResetLinkView(function () { + return view('auth.forgot-password'); + }); + + Fortify::resetPasswordView(function (Request $request) { + return view('auth.reset-password', ['request' => $request]); + }); } } diff --git a/Web-Application/Fortify/resources/views/auth/forgot-password.blade.php b/Web-Application/Fortify/resources/views/auth/forgot-password.blade.php new file mode 100644 index 0000000..7edc0b0 --- /dev/null +++ b/Web-Application/Fortify/resources/views/auth/forgot-password.blade.php @@ -0,0 +1,37 @@ +@extends('app') + +@section('content') +