Changeset 2815 for branches/plugin/bbp-themes
- Timestamp:
- 01/18/2011 08:35:34 AM (15 years ago)
- Location:
- branches/plugin/bbp-themes/bbp-twentyten
- Files:
-
- 3 added
- 8 edited
-
css/bbpress.css (modified) (1 diff)
-
form-bbp_merge.php (modified) (1 diff)
-
form-bbp_reply.php (modified) (1 diff)
-
form-bbp_split.php (modified) (1 diff)
-
form-bbp_topic.php (modified) (1 diff)
-
form-bbp_user_login.php (added)
-
form-bbp_user_lost_pass.php (added)
-
form-bbp_user_register.php (modified) (1 diff)
-
page-bbp_login.php (modified) (2 diffs)
-
page-bbp_lost_pass.php (added)
-
page-bbp_register.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/plugin/bbp-themes/bbp-twentyten/css/bbpress.css
r2810 r2815 226 226 } 227 227 228 p#bbp_topic_submit_container, 229 p#bbp_reply_submit_container { 228 div.bbp-submit-wrapper { 230 229 float: right; 231 230 } -
branches/plugin/bbp-themes/bbp-twentyten/form-bbp_merge.php
r2810 r2815 69 69 </fieldset> 70 70 71 < p id="bbp_topic_submit_container">71 <div class="bbp-submit-wrapper"> 72 72 <button type="submit" tabindex="<?php bbp_tab_index(); ?>" id="bbp_merge_topic_submit" name="bbp_merge_topic_submit"><?php _e( 'Submit', 'bbpress' ); ?></button> 73 </ p>73 </div> 74 74 </div> 75 75 -
branches/plugin/bbp-themes/bbp-twentyten/form-bbp_reply.php
r2810 r2815 94 94 <?php endif; ?> 95 95 96 < p id="bbp_reply_submit_container">96 <div class="bbp-submit-wrapper"> 97 97 <button type="submit" tabindex="<?php bbp_tab_index(); ?>" id="bbp_reply_submit" name="bbp_reply_submit"><?php _e( 'Submit', 'bbpress' ); ?></button> 98 </ p>98 </div> 99 99 </div> 100 100 -
branches/plugin/bbp-themes/bbp-twentyten/form-bbp_split.php
r2810 r2815 79 79 </fieldset> 80 80 81 < p id="bbp_topic_submit_container">81 <div class="bbp-submit-wrapper"> 82 82 <button type="submit" tabindex="<?php bbp_tab_index(); ?>" id="bbp_merge_topic_submit" name="bbp_merge_topic_submit"><?php _e( 'Submit', 'bbpress' ); ?></button> 83 </ p>83 </div> 84 84 </div> 85 85 -
branches/plugin/bbp-themes/bbp-twentyten/form-bbp_topic.php
r2810 r2815 129 129 <?php endif; ?> 130 130 131 < p id="bbp_topic_submit_container">131 <div class="bbp-submit-wrapper"> 132 132 <button type="submit" tabindex="<?php bbp_tab_index(); ?>" id="bbp_topic_submit" name="bbp_topic_submit"><?php _e( 'Submit', 'bbpress' ); ?></button> 133 </ p>133 </div> 134 134 </div> 135 135 -
branches/plugin/bbp-themes/bbp-twentyten/form-bbp_user_register.php
r2814 r2815 9 9 10 10 ?> 11 12 <form method="post" action="<?php bbp_wp_login_action( array( 'action' => 'register', 'context' => 'login_post' ) ); ?>" class="bbp-login-form"> 13 <fieldset> 14 <legend><?php _e( 'Register', 'bbpress' ); ?></legend> 15 16 <?php do_action( 'bbp_template_notices' ); ?> 17 18 <div class="bbp-username"> 19 <label for="user_login"><?php _e( 'Username', 'bbpress' ); ?>: </label> 20 <input type="text" name="log" value="<?php bbp_sanitize_val( 'user_login' ); ?>" size="20" id="user_login" tabindex="<?php bbp_tab_index(); ?>" /> 21 </div> 22 23 <div class="bbp-email"> 24 <label for="user_email"><?php _e( 'Email Address', 'bbpress' ); ?>: </label> 25 <input type="text" name="user_email" value="<?php bbp_sanitize_val( 'user_email' ); ?>" size="20" id="user_email" tabindex="<?php bbp_tab_index(); ?>" /> 26 </div> 27 28 <div class="bbp-submit-wrapper"> 29 30 <?php do_action( 'register_form' ); ?> 31 32 <button type="submit" name="user-submit" tabindex="<?php bbp_tab_index(); ?>" class="user-submit"><?php _e( 'Register', 'bbpress' ); ?></button> 33 34 <?php bbp_user_register_fields(); ?> 35 36 </div> 37 </fieldset> 38 </form> -
branches/plugin/bbp-themes/bbp-twentyten/page-bbp_login.php
r2810 r2815 8 8 */ 9 9 10 ?> 10 // No logged in users 11 bbp_logged_in_redirect(); 11 12 12 <?php get_header(); ?> 13 // Begin Template 14 get_header(); ?> 13 15 14 16 <div id="container"> … … 25 27 <?php the_content(); ?> 26 28 27 <?php if ( !is_user_logged_in() ) : ?>29 <?php //if ( !is_user_logged_in() ) : ?> 28 30 29 <fieldset> 30 <legend><?php _e( 'Login', 'bbpress' ); ?></legend> 31 <?php get_template_part( 'form', 'bbp_user_login' ); ?> 31 32 32 <?php do_action( 'bbp_template_notices' );?>33 <?php //else : ?> 33 34 34 <?php wp_login_form( array( 'redirect' => $_SERVER['HTTP_REFERER'] ) ); ?> 35 36 </fieldset> 37 38 <?php else : ?> 39 40 41 42 <?php endif; ?> 35 <?php //endif; ?> 43 36 44 37 </div> -
branches/plugin/bbp-themes/bbp-twentyten/page-bbp_register.php
r2813 r2815 8 8 */ 9 9 10 ?> 10 // No logged in users 11 bbp_logged_in_redirect(); 11 12 12 <?php get_header(); ?> 13 // Begin Template 14 get_header(); ?> 13 15 14 16 <div id="container"> … … 25 27 <?php the_content(); ?> 26 28 27 <?php if ( !is_user_logged_in() ) : ?> 28 29 <?php get_template_part( 'form', 'bbp_user_register' ); ?> 30 31 <?php else : ?> 32 33 <p><?php _e( 'You’re already logged in, why do you need to register?', 'bbpress' ); ?></p> 34 35 <?php endif; ?> 29 <?php get_template_part( 'form', 'bbp_user_register' ); ?> 36 30 37 31 </div>
Note: See TracChangeset
for help on using the changeset viewer.