Current File : /home/bravrvjk/itiministry.org/wp-content/plugins/give/templates//email-login-form.php
<?php
/**
* Session Refresh Form
*
* This template is used to display an email form which will when submitted send an update donation receipt and also
* refresh the users session
*/
global $give_access_form_outputted;
// Only output the form once.
if ( $give_access_form_outputted ) {
return;
}
$is_form_required = true;
$recaptcha_key = give_get_option( 'recaptcha_key' );
$recaptcha_secret = give_get_option( 'recaptcha_secret' );
$enable_recaptcha = ( give_is_setting_enabled( give_get_option( 'enable_recaptcha' ) ) ) && ! empty( $recaptcha_key ) && ! empty( $recaptcha_secret ) ? true : false;
// Email already sent?
if ( isset( $_POST['email-access-sent'] ) ) {
/**
* Filter to modify access mail send notice
*
* @since 2.1.3
*
* @param string Send notice message for email access.
*
* @return string $message Send notice message for email access.
*/
$message = (string) apply_filters( 'give_email_access_mail_send_notice', __( 'Please check your email and click on the link to access your complete donation history.', 'give' ) );
Give_Notices::print_frontend_notice(
$message,
true,
'success'
);
$is_form_required = false;
} elseif ( isset( $_POST['email-access-exhausted'] ) ) {
$value = Give()->email_access->verify_throttle / 60;
/**
* Filter to modify email access exceed notices message.
*
* @since 2.1.3
*
* @param string $message email access exceed notices message
* @param int $value email access exceed times
*
* @return string $message email access exceed notices message
*/
$message = (string) apply_filters(
'give_email_access_requests_exceed_notice',
sprintf(
__( 'Too many access email requests detected. Please wait %s before requesting a new donation history access link.', 'give' ),
sprintf( _n( '%s minute', '%s minutes', $value, 'give' ), $value )
),
$value
);
// Too many emails sent?
Give_Notices::print_frontend_notice(
$message,
true,
'error'
);
$is_form_required = false;
}
if ( true === $is_form_required ) {
/**
* Perform processing for email access form login.
*
* @since 1.8.17
*/
do_action( 'give_email_access_form_login' );
// Print any other messages & errors.
Give()->notices->render_frontend_notices();
?>
<div class="give-form">
<form method="post" id="give-email-access-form">
<p>
<?php
/**
* Filter to modify email access welcome message
*
* @since 2.1.3
*
* @param string $message email access welcome message
*
* @return string $message email access welcome message
*/
echo esc_html( apply_filters( 'give_email_access_welcome_message', __( 'Please verify your email to access your donation history.', 'give' ) ) );
?>
</p>
<label for="give-email"><?php esc_attr_e( 'Donation Email:', 'give' ); ?></label>
<input id="give-email" type="email" name="give_email" value=""
placeholder="<?php esc_attr_e( 'Email Address', 'give' ); ?>"/>
<input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce( 'give' ); ?>"/>
<input type="hidden" name="give_action" value="email_access_form_login"/>
<input type="hidden" name="give_access_page" value="<?php the_ID(); ?>"/>
<?php
// Enable reCAPTCHA?
if ( $enable_recaptcha ) :
?>
<script>
// IP verify for reCAPTCHA.
(function ($) {
$(function () {
$.getJSON('https://api.ipify.org?format=jsonp&callback=?', function (json) {
$('.give_ip').val(json.ip);
});
});
})(jQuery);
</script>
<script src='https://www.google.com/recaptcha/api.js'></script>
<div class="g-recaptcha" data-sitekey="<?php echo $recaptcha_key; ?>"></div>
<input type="hidden" name="give_ip" class="give_ip" value=""/>
<?php endif; ?>
<input type="submit" class="give-submit" value="<?php esc_attr_e( 'Verify Email', 'give' ); ?>"/>
</form>
</div>
<?php
}
// The form has been output.
$give_access_form_outputted = true;