Changeset 61651 for trunk/src/wp-login.php
- Timestamp:
- 02/16/2026 05:01:33 PM (8 weeks ago)
- File:
-
- 1 edited
-
trunk/src/wp-login.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-login.php
r61610 r61651 898 898 <p> 899 899 <label for="user_login"><?php _e( 'Username or Email Address' ); ?></label> 900 <input type="text" name="user_login" id="user_login" class="input " value="<?php echo esc_attr( $user_login ); ?>" size="20" autocapitalize="off" autocomplete="username" required="required" />900 <input type="text" name="user_login" id="user_login" class="input ltr" value="<?php echo esc_attr( $user_login ); ?>" size="20" autocapitalize="off" autocomplete="username" required="required" /> 901 901 </p> 902 902 <?php … … 1040 1040 1041 1041 <div class="wp-pwd"> 1042 <input type="password" name="pass1" id="pass1" class="input password-input " size="24" value="" autocomplete="new-password" spellcheck="false" data-reveal="1" data-pw="<?php echo esc_attr( wp_generate_password( 16 ) ); ?>" aria-describedby="pass-strength-result" />1042 <input type="password" name="pass1" id="pass1" class="input password-input ltr" size="24" value="" autocomplete="new-password" spellcheck="false" data-reveal="1" data-pw="<?php echo esc_attr( wp_generate_password( 16 ) ); ?>" aria-describedby="pass-strength-result" /> 1043 1043 1044 1044 <button type="button" class="button button-secondary wp-hide-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Hide password' ); ?>"> … … 1168 1168 <p> 1169 1169 <label for="user_login"><?php _e( 'Username' ); ?></label> 1170 <input type="text" name="user_login" id="user_login" class="input " value="<?php echo esc_attr( $user_login ); ?>" size="20" autocapitalize="off" autocomplete="username" required="required" />1170 <input type="text" name="user_login" id="user_login" class="input ltr" value="<?php echo esc_attr( $user_login ); ?>" size="20" autocapitalize="off" autocomplete="username" required="required" /> 1171 1171 </p> 1172 1172 <p> … … 1520 1520 <p> 1521 1521 <label for="user_login"><?php _e( 'Username or Email Address' ); ?></label> 1522 <input type="text" name="log" id="user_login"<?php echo $aria_describedby; ?> class="input " value="<?php echo esc_attr( $user_login ); ?>" size="20" autocapitalize="off" autocomplete="username" required="required" />1522 <input type="text" name="log" id="user_login"<?php echo $aria_describedby; ?> class="input ltr" value="<?php echo esc_attr( $user_login ); ?>" size="20" autocapitalize="off" autocomplete="username" required="required" /> 1523 1523 </p> 1524 1524 … … 1526 1526 <label for="user_pass"><?php _e( 'Password' ); ?></label> 1527 1527 <div class="wp-pwd"> 1528 <input type="password" name="pwd" id="user_pass"<?php echo $aria_describedby; ?> class="input password-input " value="" size="20" autocomplete="current-password" spellcheck="false" required="required" />1528 <input type="password" name="pwd" id="user_pass"<?php echo $aria_describedby; ?> class="input password-input ltr" value="" size="20" autocomplete="current-password" spellcheck="false" required="required" /> 1529 1529 <button type="button" class="button button-secondary wp-hide-pw hide-if-no-js" data-toggle="0" aria-label="<?php esc_attr_e( 'Show password' ); ?>"> 1530 1530 <span class="dashicons dashicons-visibility" aria-hidden="true"></span>
Note: See TracChangeset
for help on using the changeset viewer.