Mise en prod

This commit is contained in:
hugol
2024-11-16 11:49:20 +01:00
parent a21b69bd8f
commit 3210782a6c
38 changed files with 3486 additions and 6524 deletions

View File

@@ -2,6 +2,7 @@
namespace App\Providers;
use Artesaos\SEOTools\Facades\SEOTools;
use Illuminate\Support\ServiceProvider;
use Laravel\Fortify\Fortify;
@@ -25,18 +26,24 @@ class FortifyBootstrapServiceProvider extends ServiceProvider
public function boot()
{
Fortify::loginView(function () {
SEOTools::setTitle('Connexion');
return view('auth.login');
});
/*
Fortify::registerView(function () {
SEOTools::setTitle('Inscription');
return view('auth.register');
});
Fortify::requestPasswordResetLinkView(function () {
SEOTools::setTitle('Mot de passe perdu');
return view('auth.forgot-password');
});
Fortify::resetPasswordView(function ($request) {
SEOTools::setTitle('Changer mot de passe');
return view('auth.reset-password', ['request' => $request]);
});
@@ -51,5 +58,7 @@ class FortifyBootstrapServiceProvider extends ServiceProvider
Fortify::twoFactorChallengeView(function () {
return view('auth.two-factor-challenge');
});
*/
}
}