diff --git src/wp-login.php src/wp-login.php
index 4453f82..6415b15 100644
|
|
switch ( $action ) { |
603 | 603 | <form name="lostpasswordform" id="lostpasswordform" action="<?php echo esc_url( network_site_url( 'wp-login.php?action=lostpassword', 'login_post' ) ); ?>" method="post"> |
604 | 604 | <p> |
605 | 605 | <label for="user_login" ><?php _e( 'Username or Email Address' ); ?><br /> |
606 | | <input type="text" name="user_login" id="user_login" class="input" value="<?php echo esc_attr( $user_login ); ?>" size="20" /></label> |
| 606 | <input type="text" name="user_login" id="user_login" class="input" value="<?php echo esc_attr( $user_login ); ?>" size="20" autocapitalize="off" /></label> |
607 | 607 | </p> |
608 | 608 | <?php |
609 | 609 | /** |
… |
… |
switch ( $action ) { |
823 | 823 | <form name="registerform" id="registerform" action="<?php echo esc_url( site_url( 'wp-login.php?action=register', 'login_post' ) ); ?>" method="post" novalidate="novalidate"> |
824 | 824 | <p> |
825 | 825 | <label for="user_login"><?php _e( 'Username' ); ?><br /> |
826 | | <input type="text" name="user_login" id="user_login" class="input" value="<?php echo esc_attr( wp_unslash( $user_login ) ); ?>" size="20" /></label> |
| 826 | <input type="text" name="user_login" id="user_login" class="input" value="<?php echo esc_attr( wp_unslash( $user_login ) ); ?>" size="20" autocapitalize="off" /></label> |
827 | 827 | </p> |
828 | 828 | <p> |
829 | 829 | <label for="user_email"><?php _e( 'Email' ); ?><br /> |
… |
… |
switch ( $action ) { |
1025 | 1025 | <form name="loginform" id="loginform" action="<?php echo esc_url( site_url( 'wp-login.php', 'login_post' ) ); ?>" method="post"> |
1026 | 1026 | <p> |
1027 | 1027 | <label for="user_login"><?php _e( 'Username or Email Address' ); ?><br /> |
1028 | | <input type="text" name="log" id="user_login"<?php echo $aria_describedby_error; ?> class="input" value="<?php echo esc_attr( $user_login ); ?>" size="20" /></label> |
| 1028 | <input type="text" name="log" id="user_login"<?php echo $aria_describedby_error; ?> class="input" value="<?php echo esc_attr( $user_login ); ?>" size="20" autocapitalize="off" /></label> |
1029 | 1029 | </p> |
1030 | 1030 | <p> |
1031 | 1031 | <label for="user_pass"><?php _e( 'Password' ); ?><br /> |