blob: 97d20e6c16abade7d2d5aed9189ab3e05ed76daa (
plain) (
tree)
|
|
function SignupController()
{
// redirect to homepage when cancel button is clicked //
$('#account-form-btn1').click(function(){ window.location.href = '/';});
// redirect to homepage on new account creation, add short delay so user can read alert window //
$('.modal-alert #ok').click(function(){ setTimeout(function(){window.location.href = '/';}, 300)});
}
|