This commit is contained in:
2020-02-05 07:15:27 -05:00
parent fb5c9b7709
commit 5d9da78cf6
5 changed files with 23 additions and 26 deletions
@@ -46,7 +46,7 @@ class Start_Controller extends COR_Controller {
protected function testLoginInput(&$username, &$password, &$error_message, &$valid_entry) {
$valid_entry = true;
$username = trim($this->input->post('username'));
$password = trim($this->input->post('password'));
$password = trim($this->input->post('pass1'));
if ($username == '' or $password == '') {
$valid_entry = false;
$error_message = 'Enter a Username/Password & PracticeID to continue';