Make WordPress Core

Changes between Initial Version and Version 2 of Ticket #55193


Ignore:
Timestamp:
02/18/2022 06:25:04 AM (4 years ago)
Author:
sabernhardt
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #55193

    • Property Component changed from General to Login and Registration
  • 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 page
     1Hi, below are the codes of login forms html output of `wp_login_form()` function, and wp-login.php page
    22
    33
     
    6262
    6363wp_login_form():
    64 <input name="rememberme" type="checkbox" id="rememberme" value="forever">
     64{{{<input name="rememberme" type="checkbox" id="rememberme" value="forever">}}}
    6565wp-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">}}}
    6767
    6868the ids are the same, but
    6969
    7070wp_login_form():
    71 <p class="forgetmenot">
     71{{{<p class="forgetmenot">}}}
    7272wp-login.php:
    73 <p class="login-remember">
     73{{{<p class="login-remember">}}}
    7474
    7575the classes are different
    7676
    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?
     77Can 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?
    7878