Advertisement
Guest User

Untitled

a guest
Jan 5th, 2017
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.99 KB | None | 0 0
  1. <?php
  2.  
  3. global $gw_activate_template;
  4.  
  5. extract( $gw_activate_template->result );
  6.  
  7. $url = is_multisite() ? get_blogaddress_by_id( (int) $blog_id ) : home_url('', 'http');
  8. $user = new WP_User( (int) $user_id );
  9.  
  10. ?>
  11.  
  12. <h2><?php _e('Your account is now active!'); ?></h2>
  13.  
  14. <div id="signup-welcome">
  15. <p><span class="h3"><?php _e('Username:'); ?></span> <?php echo $user->user_login ?></p>
  16. <p><span class="h3"><?php _e('Password:'); ?></span> <?php echo $password; ?></p>
  17. </div>
  18.  
  19. <?php if ( $url != network_home_url('', 'http') ) : ?>
  20. <p class="view"><?php _e('Your account is now activated. <a href="http://www.herefordequestrian.co.uk/">View your site</a> or <a href="http://www.herefordequestrian.co.uk/user-registration/">Log in</a>'); ?></p>
  21. <?php else: ?>
  22. <p class="view"><?php _e('Your account is now activated. <a href="http://www.herefordequestrian.co.uk/user-registration/">Log in</a> or go back to the <a href="http://www.herefordequestrian.co.uk/">homepage</a>.'); ?></p>
  23. <?php endif; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement