chevereto-free/app/themes/Peafowl/views/account/resend-activation.php

53 lines
2.1 KiB
PHP
Raw Normal View History

2016-08-18 20:39:31 +00:00
<?php if(!defined('access') or !access) die('This file cannot be directly accessed.'); ?>
<?php G\Render\include_theme_header(); ?>
<div class="center-box c24">
<div class="content-width">
<div class="header default-margin-bottom">
<h1><?php _se('Resend account activation'); ?></h1>
</div>
<?php if(is_process_done()) { ?>
<div>
<p><?php _se("An email to %s has been sent with instructions to activate your account. If you don't receive the instructions try checking your junk or spam filters.", '<b>'.get_resend_activation_email().'</b>'); ?></p>
<div class="btn-container"><a href="<?php echo G\get_base_url(); ?>" class="btn btn-input default"><?php _se('Go to homepage'); ?></a> <span class="btn-alt"><?php _se('or'); ?> <a href="<?php echo G\get_base_url("account/resend-activation"); ?>"><?php _se('Resend activation'); ?></a></span></div>
</div>
<?php } else { ?>
<form class="form-content" method="post" autocomplete="off" data-action="validate">
<p><?php _se('Enter the username or email address that you used to create your account to continue.'); ?></p>
<div class="c9">
<div class="input-label">
<label for="form-user-subject"><?php _se('Username or Email address'); ?></label>
<input type="text" name="user-subject" id="form-user-subject" class="text-input" autocomplete="off" value="<?php echo get_safe_post()["user-subject"]; ?>" required>
<span class="input-warning red-warning"><?php echo get_input_errors()["user-subject"]; ?></span>
</div>
<?php if(is_captcha_needed()) { ?>
<div class="input-label">
<label for="recaptcha_response_field">reCAPTCHA</label>
<?php echo get_recaptcha_html(); ?>
</div>
<?php } ?>
</div>
<div class="btn-container">
<button class="btn btn-input default" type="submit"><?php _se('Submit'); ?></button>
</div>
</form>
<?php } ?>
</div>
</div>
<?php if(is_error() and get_error()) { ?>
<script>
$(document).ready(function() {
PF.fn.growl.expirable("<?php echo get_error(); ?>");
});
</script>
<?php } ?>
<?php G\Render\include_theme_footer(); ?>