Advertisement
Guest User

Untitled

a guest
Aug 23rd, 2010
643
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <p id="login-text">
  2. <?php _e( 'To start connecting please log in first.', 'buddypress' ) ?>
  3. <?php if ( bp_get_signup_allowed() ) : ?>
  4. <?php printf( __( ' You can also <a href="%s" title="Create an account">create an account</a>.', 'buddypress' ), site_url( BP_REGISTER_SLUG . '/' ) ) ?>
  5. <?php endif; ?>
  6. </p>
  7.  
  8. <form name="login-form" id="sidebar-login-form" class="standard-form" action="<?php echo site_url( 'wp-login.php', 'login_post' ) ?>" method="post">
  9. <label><?php _e( 'Username', 'buddypress' ) ?><br />
  10. <input type="text" name="log" id="sidebar-user-login" class="input" value="<?php echo attribute_escape(stripslashes($user_login)); ?>" /></label>
  11.  
  12. <label><?php _e( 'Password', 'buddypress' ) ?><br />
  13. <input type="password" name="pwd" id="sidebar-user-pass" class="input" value="" /></label>
  14.  
  15. <p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="sidebar-rememberme" value="forever" /> <?php _e( 'Remember Me', 'buddypress' ) ?></label></p>
  16.  
  17. <?php do_action( 'bp_sidebar_login_form' ) ?>
  18. <input type="submit" name="wp-submit" id="sidebar-wp-submit" value="<?php _e('Log In'); ?>" tabindex="100" />
  19. <input type="hidden" name="testcookie" value="1" />
  20. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement