mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-03 11:08:28 +00:00
Fixed password reset routine.
This commit is contained in:
@@ -3,7 +3,23 @@
|
||||
// auth routes, i think
|
||||
Route::group(
|
||||
['middleware' => 'web'], function () {
|
||||
Route::auth();
|
||||
|
||||
// Authentication Routes...
|
||||
Route::get('/login', 'Auth\AuthController@showLoginForm');
|
||||
Route::post('/login', 'Auth\AuthController@login');
|
||||
Route::get('/logout', 'Auth\AuthController@logout');
|
||||
|
||||
// Registration Routes...
|
||||
Route::get('/register', ['uses' => 'Auth\AuthController@showRegistrationForm', 'as' => 'register']);
|
||||
Route::post('/register', 'Auth\AuthController@register');
|
||||
|
||||
Route::get('/password/reset', 'Auth\PasswordController@getReset');
|
||||
|
||||
// Password Reset Routes...
|
||||
Route::get('/password/reset/{token?}', 'Auth\PasswordController@showResetForm');
|
||||
Route::post('/password/email', 'Auth\PasswordController@sendResetLinkEmail');
|
||||
Route::post('/password/reset', 'Auth\PasswordController@reset');
|
||||
|
||||
|
||||
//Route::get('/home', 'HomeController@index');
|
||||
}
|
||||
|
Reference in New Issue
Block a user