Ticket #4021: tabindex-showcase-submit-site.patch
File tabindex-showcase-submit-site.patch, 1.9 KB (added by , 6 years ago) |
---|
-
wordpress.org/public_html/wp-content/themes/pub/wporg-showcase/page-submit.php
86 86 <input type="text" name="url" id="url" value="<?php echo esc_url( $url ); ?>" size="28" tabindex="3" class="text" /></p> 87 87 88 88 <p><label for="owner"><?php _e( "Do you own this site? (It's okay if you don't - we just want to know for contact purposes.)", 'wporg-showcase' ); ?></label><br /> 89 <select name="owner" id="owner" >89 <select name="owner" id="owner" tabindex="4"> 90 90 <option value="yes" <?php selected( $owner, 'yes' ); ?> ><?php _e( 'Yes', 'wporg-showcase' ); ?></option> 91 91 <option value="no" <?php selected( $owner, 'no' ); ?> ><?php _e( 'No', 'wporg-showcase' ); ?></option> 92 92 </select> 93 93 94 94 <p><label for="description"><?php _e( 'Please describe the site and, if applicable, the person or organization it represents.', 'wporg-showcase' ); ?></label><br /> 95 <textarea name="description" id="description" cols="60" rows="4" tabindex=" 4" class="text"><?php echo esc_textarea( $description ); ?></textarea></p>95 <textarea name="description" id="description" cols="60" rows="4" tabindex="5" class="text"><?php echo esc_textarea( $description ); ?></textarea></p> 96 96 97 97 <p><label for="why"><?php _e( 'What justifies this site being added to the WordPress Showcase? What makes it unique or interesting?', 'wporg-showcase' ); ?></label><br /> 98 <textarea name="why" id="why" cols="60" rows="4" tabindex=" 5" class="text"><?php echo esc_textarea( $why ); ?></textarea></p>98 <textarea name="why" id="why" cols="60" rows="4" tabindex="6" class="text"><?php echo esc_textarea( $why ); ?></textarea></p> 99 99 100 100 <p class="required"><?php _e( '* All fields are required.', 'wporg-showcase' ); ?></p> 101 101