Account Creation in AdminCP
This commit is contained in:
parent
d0e4592377
commit
3d80c5b7e6
5 changed files with 136 additions and 3 deletions
|
@ -14,6 +14,9 @@ class BaseRoutes {
|
|||
return redirect()->route('index');
|
||||
});
|
||||
|
||||
// Password Generation
|
||||
$router->get('/password-gen/{length}', [ 'as' => 'password-gen', 'uses' => 'Base\IndexController@getPassword' ]);
|
||||
|
||||
// Account Routes
|
||||
$router->get('/account', [ 'as' => 'account', 'uses' => 'Base\IndexController@getAccount' ]);
|
||||
$router->post('/account/password', [ 'uses' => 'Base\IndexController@postAccountPassword' ]);
|
||||
|
|
Reference in a new issue