Skip to content

Commit

Permalink
readded login.js for user
Browse files Browse the repository at this point in the history
  • Loading branch information
Blake Callens committed Jul 5, 2015
1 parent ce84c2e commit d81d3df
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions public/js/user/login.js
@@ -0,0 +1,60 @@
/*
Copyright (C) 2015 PencilBlue, LLC
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

$(document).ready(function()
{
$('#login_form').validate({
rules:
{
username:
{
minlength: 2,
required: true
},
password:
{
required: true,
}
}
});
});

function checkForLogin(event)
{
if(event.keyCode == 13)
{
login();
}
}

function login()
{
$('#password').rules('add',
{
required: true
});
$('#login_form').attr('action', '/actions/login');
$('#login_form').submit();
}

function forgotPassword()
{
$('#password').rules('remove');

$('#login_form').attr('action', '/actions/forgot_password');
$('#login_form').submit();
}

0 comments on commit d81d3df

Please sign in to comment.