Changes between Initial Version and Version 2 of Ticket #55193
- Timestamp:
- 02/18/2022 06:25:04 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #55193
-
Property
Component
changed from
GeneraltoLogin and Registration
-
Property
Component
changed from
-
Ticket #55193 – Description
initial v2 1 Hi, below are the codes of login forms html output of wp_login_form()function, and wp-login.php page1 Hi, below are the codes of login forms html output of `wp_login_form()` function, and wp-login.php page 2 2 3 3 … … 62 62 63 63 wp_login_form(): 64 <input name="rememberme" type="checkbox" id="rememberme" value="forever"> 64 {{{<input name="rememberme" type="checkbox" id="rememberme" value="forever">}}} 65 65 wp-login.php: 66 <input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="0"> 66 {{{<input name="rememberme" type="checkbox" id="rememberme" value="forever" tabindex="0">}}} 67 67 68 68 the ids are the same, but 69 69 70 70 wp_login_form(): 71 <p class="forgetmenot"> 71 {{{<p class="forgetmenot">}}} 72 72 wp-login.php: 73 <p class="login-remember"> 73 {{{<p class="login-remember">}}} 74 74 75 75 the classes are different 76 76 77 Can you make the ids and classes same, so it will be easier for me to make the two login forms ( wp_login_form()and wp-login.php ) with consistent style?77 Can you make the ids and classes same, so it will be easier for me to make the two login forms ( `wp_login_form()` and wp-login.php ) with consistent style? 78 78