blob: 97d20e6c16abade7d2d5aed9189ab3e05ed76daa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
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)});
}
|