[ Index ]

PHP Cross Reference of BuddyPress

title

Body

[close]

/src/bp-forums/bbpress/bb-templates/kakumei/ -> login-form.php (source)

   1  <form class="login" method="post" action="<?php bb_uri( 'bb-login.php', null, BB_URI_CONTEXT_FORM_ACTION + BB_URI_CONTEXT_BB_USER_FORMS ); ?>">
   2      <p>
   3          <?php
   4      printf(
   5          __( '<a href="%1$s">Register</a> or log in - <a href="%2$s">lost password?</a>' ),
   6          bb_get_uri( 'register.php', null, BB_URI_CONTEXT_A_HREF + BB_URI_CONTEXT_BB_USER_FORMS ),
   7          bb_get_uri( 'bb-login.php', array( 'action' => 'lostpassword' ), BB_URI_CONTEXT_A_HREF + BB_URI_CONTEXT_BB_USER_FORMS )
   8      );
   9      ?>
  10  
  11      </p>
  12      <div>
  13          <label>
  14              <?php _e('Username'); ?><br />
  15              <input name="log" type="text" id="quick_user_login" size="13" maxlength="40" value="<?php if (!is_bool($user_login)) echo $user_login; ?>" tabindex="10" />
  16          </label>
  17          <label>
  18              <?php _e( 'Password' ); ?><br />
  19              <input name="pwd" type="password" id="quick_password" size="13" maxlength="40" tabindex="11" />
  20          </label>
  21          <input name="redirect_to" type="hidden" value="<?php echo $re; ?>" />
  22          <?php wp_referer_field(); ?>
  23  
  24          <input type="submit" name="Submit" class="submit" value="<?php echo esc_attr__( 'Log in &raquo;' ); ?>" tabindex="13" />
  25      </div>
  26      <div class="remember">
  27          <label>
  28              <input name="rememberme" type="checkbox" id="quick_remember" value="1" tabindex="12"<?php echo $remember_checked; ?> />
  29              <?php _e('Remember me'); ?>
  30  
  31          </label>
  32      </div>
  33  </form>


Generated: Thu Dec 7 01:01:35 2017 Cross-referenced by PHPXref 0.7.1