blob: 066e8220791a1602f199fbcd85fd04612d8edd27 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
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;
}
}
|