git-svn-id: https://192.168.0.254/svn/Proyectos.ASong2U_Web/trunk@148 cd1a4ea2-8c7f-e448-aada-19d1fee9e1d6
60 lines
1.8 KiB
PHP
60 lines
1.8 KiB
PHP
<?php get_header( 'buddypress' ); ?>
|
|
|
|
<div id="content">
|
|
<div class="padder">
|
|
|
|
<?php do_action( 'bp_before_activation_page' ) ?>
|
|
|
|
<div class="page" id="activate-page">
|
|
|
|
<?php if ( bp_account_was_activated() ) : ?>
|
|
|
|
<h2 class="widgettitle"><?php _e( 'Account Activated', 'buddypress' ) ?></h2>
|
|
|
|
<?php do_action( 'bp_before_activate_content' ) ?>
|
|
|
|
<?php if ( isset( $_GET['e'] ) ) : ?>
|
|
<p><?php _e( 'Your account was activated successfully! Your account details have been sent to you in a separate email.', 'buddypress' ) ?></p>
|
|
<?php else : ?>
|
|
<p><?php _e( 'Your account was activated successfully! You can now log in with the username and password you provided when you signed up.', 'buddypress' ) ?></p>
|
|
<?php endif; ?>
|
|
|
|
<?php else : ?>
|
|
|
|
<h3><?php _e( 'Activate your Account', 'buddypress' ) ?></h3>
|
|
|
|
<?php do_action( 'bp_before_activate_content' ) ?>
|
|
|
|
<p><?php _e( 'Please provide a valid activation key.', 'buddypress' ) ?></p>
|
|
|
|
<form action="" method="get" class="standard-form" id="activation-form">
|
|
|
|
<label for="key"><?php _e( 'Activation Key:', 'buddypress' ) ?></label>
|
|
<input type="text" name="key" id="key" value="" />
|
|
|
|
<p class="submit">
|
|
<input type="submit" name="submit" value="<?php _e( 'Activate', 'buddypress' ) ?>" />
|
|
</p>
|
|
|
|
</form>
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php do_action( 'bp_after_activate_content' ) ?>
|
|
|
|
</div><!-- .page -->
|
|
|
|
<?php do_action( 'bp_after_activation_page' ) ?>
|
|
|
|
</div><!-- .padder -->
|
|
</div><!-- #content -->
|
|
<script type="text/javascript">
|
|
<!--
|
|
function aredirect() { window.location="<?php echo home_url(); ?>"; }
|
|
setTimeout('aredirect()', 3000);
|
|
//-->
|
|
</script>
|
|
<?php get_sidebar( 'buddypress' ) ?>
|
|
|
|
<?php get_footer( 'buddypress' ); ?>
|