Changeset 7006 for trunk/src/templates/default/bbpress/form-user-edit.php
- Timestamp:
- 11/24/2019 01:38:37 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/templates/default/bbpress/form-user-edit.php
r6806 r7006 15 15 <form id="bbp-your-profile" method="post" enctype="multipart/form-data"> 16 16 17 <h2 class="entry-title"><?php esc_html_e( 'Name', 'bbpress' ) ?></h2>17 <h2 class="entry-title"><?php esc_html_e( 'Name', 'bbpress' ); ?></h2> 18 18 19 19 <?php do_action( 'bbp_user_edit_before' ); ?> 20 20 21 21 <fieldset class="bbp-form"> 22 <legend><?php esc_html_e( 'Name', 'bbpress' ) ?></legend>22 <legend><?php esc_html_e( 'Name', 'bbpress' ); ?></legend> 23 23 24 24 <?php do_action( 'bbp_user_edit_before_name' ); ?> 25 25 26 26 <div> 27 <label for="first_name"><?php esc_html_e( 'First Name', 'bbpress' ) ?></label>27 <label for="first_name"><?php esc_html_e( 'First Name', 'bbpress' ); ?></label> 28 28 <input type="text" name="first_name" id="first_name" value="<?php bbp_displayed_user_field( 'first_name', 'edit' ); ?>" class="regular-text" /> 29 29 </div> 30 30 31 31 <div> 32 <label for="last_name"><?php esc_html_e( 'Last Name', 'bbpress' ) ?></label>32 <label for="last_name"><?php esc_html_e( 'Last Name', 'bbpress' ); ?></label> 33 33 <input type="text" name="last_name" id="last_name" value="<?php bbp_displayed_user_field( 'last_name', 'edit' ); ?>" class="regular-text" /> 34 34 </div> … … 40 40 41 41 <div> 42 <label for="display_name"><?php esc_html_e( 'Display Name', 'bbpress' ) ?></label>42 <label for="display_name"><?php esc_html_e( 'Display Name', 'bbpress' ); ?></label> 43 43 44 44 <?php bbp_edit_user_display_name(); ?> … … 50 50 </fieldset> 51 51 52 <h2 class="entry-title"><?php esc_html_e( 'Contact Info', 'bbpress' ) ?></h2>52 <h2 class="entry-title"><?php esc_html_e( 'Contact Info', 'bbpress' ); ?></h2> 53 53 54 54 <fieldset class="bbp-form"> 55 <legend><?php esc_html_e( 'Contact Info', 'bbpress' ) ?></legend>55 <legend><?php esc_html_e( 'Contact Info', 'bbpress' ); ?></legend> 56 56 57 57 <?php do_action( 'bbp_user_edit_before_contact' ); ?> 58 58 59 59 <div> 60 <label for="url"><?php esc_html_e( 'Website', 'bbpress' ) ?></label>60 <label for="url"><?php esc_html_e( 'Website', 'bbpress' ); ?></label> 61 61 <input type="text" name="url" id="url" value="<?php bbp_displayed_user_field( 'user_url', 'edit' ); ?>" maxlength="200" class="regular-text code" /> 62 62 </div> … … 97 97 </fieldset> 98 98 99 <h2 class="entry-title"><?php esc_html_e( 'Account', 'bbpress' ) ?></h2>99 <h2 class="entry-title"><?php esc_html_e( 'Account', 'bbpress' ); ?></h2> 100 100 101 101 <fieldset class="bbp-form"> 102 <legend><?php esc_html_e( 'Account', 'bbpress' ) ?></legend>102 <legend><?php esc_html_e( 'Account', 'bbpress' ); ?></legend> 103 103 104 104 <?php do_action( 'bbp_user_edit_before_account' ); ?> … … 117 117 118 118 <div> 119 <label for="url"><?php esc_html_e( 'Language', 'bbpress' ) ?></label>119 <label for="url"><?php esc_html_e( 'Language', 'bbpress' ); ?></label> 120 120 121 121 <?php bbp_edit_user_language(); ?> … … 129 129 <?php if ( ! bbp_is_user_home_edit() && current_user_can( 'promote_user', bbp_get_displayed_user_id() ) ) : ?> 130 130 131 <h2 class="entry-title"><?php esc_html_e( 'User Role', 'bbpress' ) ?></h2>131 <h2 class="entry-title"><?php esc_html_e( 'User Role', 'bbpress' ); ?></h2> 132 132 133 133 <fieldset class="bbp-form">
Note: See TracChangeset
for help on using the changeset viewer.