User register system, minor cosmetic changes, start of user authorisation

This commit is contained in:
Deon George
2021-11-11 22:57:13 +11:00
parent a0db589dc5
commit 3c8895a238
15 changed files with 488 additions and 206 deletions

View File

@@ -81,6 +81,9 @@ Route::middleware(['verified','activeuser'])->group(function () {
Route::get('ftn/zone',[ZoneController::class,'home']);
Route::match(['get','post'],'ftn/zone/addedit/{o?}',[ZoneController::class,'add_edit'])
->where('o','[0-9]+');
Route::get('user/system/register',[UserController::class,'register']);
Route::post('user/system/register',[SystemController::class,'system_register']);
});
Route::get('network/{o}',[HomeController::class,'network']);