Account Creation in AdminCP

This commit is contained in:
BlameDylan 2015-12-12 00:21:17 -06:00
parent d0e4592377
commit 3d80c5b7e6
5 changed files with 136 additions and 3 deletions

View file

@ -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' ]);