Changeset 5737 for trunk/bp-themes/bp-default/registration/activate.php
- Timestamp:
- 02/12/2012 08:09:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-themes/bp-default/registration/activate.php
r4675 r5737 4 4 <div class="padder"> 5 5 6 <?php do_action( 'bp_before_activation_page' ) ?>6 <?php do_action( 'bp_before_activation_page' ); ?> 7 7 8 8 <div class="page" id="activate-page"> … … 10 10 <?php if ( bp_account_was_activated() ) : ?> 11 11 12 <h2 class="widgettitle"><?php _e( 'Account Activated', 'buddypress' ) ?></h2>12 <h2 class="widgettitle"><?php _e( 'Account Activated', 'buddypress' ); ?></h2> 13 13 14 <?php do_action( 'bp_before_activate_content' ) ?>14 <?php do_action( 'bp_before_activate_content' ); ?> 15 15 16 16 <?php if ( isset( $_GET['e'] ) ) : ?> 17 <p><?php _e( 'Your account was activated successfully! Your account details have been sent to you in a separate email.', 'buddypress' ) ?></p>17 <p><?php _e( 'Your account was activated successfully! Your account details have been sent to you in a separate email.', 'buddypress' ); ?></p> 18 18 <?php else : ?> 19 <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>19 <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> 20 20 <?php endif; ?> 21 21 22 22 <?php else : ?> 23 23 24 <h3><?php _e( 'Activate your Account', 'buddypress' ) ?></h3>24 <h3><?php _e( 'Activate your Account', 'buddypress' ); ?></h3> 25 25 26 <?php do_action( 'bp_before_activate_content' ) ?>26 <?php do_action( 'bp_before_activate_content' ); ?> 27 27 28 <p><?php _e( 'Please provide a valid activation key.', 'buddypress' ) ?></p>28 <p><?php _e( 'Please provide a valid activation key.', 'buddypress' ); ?></p> 29 29 30 30 <form action="" method="get" class="standard-form" id="activation-form"> 31 31 32 <label for="key"><?php _e( 'Activation Key:', 'buddypress' ) ?></label>32 <label for="key"><?php _e( 'Activation Key:', 'buddypress' ); ?></label> 33 33 <input type="text" name="key" id="key" value="" /> 34 34 35 35 <p class="submit"> 36 <input type="submit" name="submit" value="<?php _e( 'Activate', 'buddypress' ) ?>" />36 <input type="submit" name="submit" value="<?php _e( 'Activate', 'buddypress' ); ?>" /> 37 37 </p> 38 38 … … 41 41 <?php endif; ?> 42 42 43 <?php do_action( 'bp_after_activate_content' ) ?>43 <?php do_action( 'bp_after_activate_content' ); ?> 44 44 45 45 </div><!-- .page --> 46 46 47 <?php do_action( 'bp_after_activation_page' ) ?>47 <?php do_action( 'bp_after_activation_page' ); ?> 48 48 49 49 </div><!-- .padder --> 50 50 </div><!-- #content --> 51 51 52 <?php get_sidebar( 'buddypress' ) ?>52 <?php get_sidebar( 'buddypress' ); ?> 53 53 54 54 <?php get_footer( 'buddypress' ); ?>
Note: See TracChangeset
for help on using the changeset viewer.