Last active
December 21, 2015 14:58
-
-
Save dkobia/6323095 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
openid.init('openid_identifier'); | |
openid.setDemoMode(false); | |
<?php | |
// Depending on the action, we need to display forms by default | |
if ($action == "signin" OR $action == "forgot") | |
{ | |
echo '$("#signin_userpass").hide(400);'; | |
} | |
elseif ($action == "openid") | |
{ | |
echo '$("#signin_openid").hide(400);'; | |
} | |
elseif ($action == "new") | |
{ | |
echo '$("#signin_new").hide(400);'; | |
} | |
elseif ($action == 'resend_confirmation' OR isset($_GET['new_confirm_email']) OR isset($_GET['confirmation_failure'])) | |
{ | |
echo '$("#resend_confirm_email").hide(0);'; | |
} | |
// Determine which form to default to open | |
if ( isset($_GET['newaccount'])) | |
{ | |
echo '$("#signin_new").hide(0);'; | |
} | |
elseif (kohana::config('config.allow_openid') == false) | |
{ | |
echo '$("#signin_userpass").hide(0);'; | |
} | |
?> | |
<?php if(kohana::config('riverid.enable') == true) { ?> | |
$(".new_email").focusout(function() { | |
$.getJSON('<?php echo kohana::config('config.site_domain'); ?>riverid/registered', {email: $(".new_email").val()}, function(response) { | |
if (response.response) { | |
$("#signin_userpass").hide(0); | |
$("#username").val($(".new_email").val()); | |
$('.new_name').attr('disabled', true); | |
$('.new_password').attr('disabled', true); | |
$('.new_password_again').attr('disabled', true); | |
$('.new_submit').attr('disabled', true); | |
$('.riverid_email_already_set_copy').html('<small>You already have an account managed by CrowdmapID! Try using your CrowdmapID email and password to login.</small>'); | |
$(".riverid_email_already_set").hide(0); | |
}else{ | |
$("#username").val(''); | |
$('.new_name').attr('disabled', false); | |
$('.new_password').attr('disabled', false); | |
$('.new_password_again').attr('disabled', false); | |
$('.new_submit').attr('disabled', false); | |
$(".riverid_email_already_set").hide(0); | |
} | |
}); | |
}); | |
<?php } ?> | |
$('#openid_login').hide(); | |
$('#create_account').hide(); | |
}); | |
function toggle(thisDiv) { | |
$("#"+thisDiv).toggle(400); | |
} | |
function facebook_click() { | |
top.location.href = "<?php echo url::site()."login/facebook"; ?>" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment