EMPLOYMENT PAGE

This commit is contained in:
CHIEFSOFT\ameye
2024-06-16 17:01:19 -04:00
parent 5ebd9230f4
commit 1a5eb46641
2 changed files with 45 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
<?php
namespace App\Controllers;
use CodeIgniter\HTTP\ResponseInterface;
class Employment extends BaseController
{
public function login() :ResponseInterface
{
$row =[];
$data = [
'call_return' => '100',
'verify_uid'=>'ce00b4c9-7a46-4176-aa5a-0f6d83740dbc',
'dev_status'=>'FAKE_RESULT_NOT_IMPLIMENTED_FOR_REAL',
'records' => $row
];
return $this->respond($data, 200);
}
public function verifyOTP() :ResponseInterface
{
$row =[];
$data = [
'call_return' => '100',
'records' => $row
];
return $this->respond($data, 200);
}
public function loadApplication() :ResponseInterface
{
$row =[];
$data = [
'call_return' => '100',
'records' => $row
];
return $this->respond($data, 200);
}
}