first commit

This commit is contained in:
CHIEFSOFT\ameye
2024-08-17 17:19:25 -04:00
commit 27aeffcfa3
904 changed files with 239087 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
<?php
namespace App\Controllers;
/*
MERM Providers Login
*/
class Login extends BaseController {
public function StartLogin() {
$data = array();
$data['username'] = $data['pass'] = $data['error_message']='';
//$this->request->getPost();
echo 'ameye ';
} // end of index Login
private function verifyLoginInput(&$data) {
$ret = false;
if ($data['username'] == '' or $data['pass'] == '') {
$data['error_message']="Username and password required";
}
if (trim($data['username']) != '' or trim($data['pass']) != '') {
$ret = true;
}
return $ret;
}
}