blob: 066e8220791a1602f199fbcd85fd04612d8edd27 (
plain) (
tree)
|
|
function LoginValidator(){
// bind a simple alert window to this controller to display any errors //
this.loginErrors = $('.modal-alert');
this.loginErrors.modal({ show : false, keyboard : true, backdrop : true });
this.showLoginError = function(t, m)
{
$('.modal-alert .modal-header h3').text(t);
$('.modal-alert .modal-body p').text(m);
this.loginErrors.modal('show');
}
}
LoginValidator.prototype.validateForm = function()
{
if ($('#user-tf').val() == ''){
this.showLoginError('Whoops!', 'Please enter a valid username');
return false;
} else if ($('#pass-tf').val() == ''){
this.showLoginError('Whoops!', 'Please enter a valid password');
return false;
} else{
return true;
}
}
|