Skip to:
Content

bbPress.org

Changeset 2195


Ignore:
Timestamp:
06/16/2009 05:01:00 AM (17 years ago)
Author:
sambauers
Message:

White space pedantry.

Location:
trunk/bb-templates/kakumei
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/bb-templates/kakumei/header.php

    r2194 r2195  
    3030                        <?php if ( bb_get_option('description') ) : ?><p class="description"><?php bb_option('description'); ?></p><?php endif; ?>
    3131
    32                         <?php if ( !in_array( bb_get_location(), array( 'login-page', 'register-page' ) ) ) login_form(); ?>
     32<?php if ( !in_array( bb_get_location(), array( 'login-page', 'register-page' ) ) ) login_form(); ?>
     33
    3334                        <div class="search">
    34                                 <?php search_form(); ?>
     35<?php search_form(); ?>
    3536                        </div>
    3637                </div>
  • trunk/bb-templates/kakumei/login-form.php

    r2177 r2195  
    11<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><?php printf(
     2        <p>
     3                <?php
     4        printf(
    35                __( '<a href="%1$s">Register</a> or log in - <a href="%2$s">lost password?</a>' ),
    46                bb_get_uri( 'register.php', null, BB_URI_CONTEXT_A_HREF + BB_URI_CONTEXT_BB_USER_FORMS ),
    5                 bb_get_uri( 'bb-login.php', null, BB_URI_CONTEXT_FORM_ACTION + BB_URI_CONTEXT_BB_USER_FORMS ) ); ?></p>
     7                bb_get_uri( 'bb-login.php', null, BB_URI_CONTEXT_FORM_ACTION + BB_URI_CONTEXT_BB_USER_FORMS )
     8        );
     9        ?>
     10
     11        </p>
    612        <div>
    7                 <label><?php _e('Username'); ?><br />
     13                <label>
     14                        <?php _e('Username'); ?><br />
    815                        <input name="user_login" type="text" id="quick_user_login" size="13" maxlength="40" value="<?php if (!is_bool($user_login)) echo $user_login; ?>" tabindex="1" />
    916                </label>
    10                 <label><?php _e( 'Password' ); ?><br />
     17                <label>
     18                        <?php _e( 'Password' ); ?><br />
    1119                        <input name="password" type="password" id="quick_password" size="13" maxlength="40" tabindex="2" />
    1220                </label>
    1321                <input name="re" type="hidden" value="<?php echo $re; ?>" />
    1422                <?php wp_referer_field(); ?>
     23
    1524                <input type="submit" name="Submit" class="submit" value="<?php echo esc_attr__( 'Log in &raquo;' ); ?>" tabindex="4" />
    1625        </div>
     
    1928                        <input name="remember" type="checkbox" id="quick_remember" value="1" tabindex="3"<?php echo $remember_checked; ?> />
    2029                        <?php _e('Remember me'); ?>
     30
    2131                </label>
    2232        </div>
Note: See TracChangeset for help on using the changeset viewer.