Hello. I would like to change to login/register form so that it uses placeholders. Adding a placeholder is easy, we add it as placeholder="text for placeholder" but i am stuck because of this:
<label for="email"><?php _e('E-mail', 'modern') ; ?></label><br/>
<?php UserForm::email_login_text() ; ?><br/>
Right now, label gives the Title of the field and <?php UserForm::email_login_text() ; ?> gives the actual input area.
So how do we convert the initial code to one which uses placeholder, whithout any js as i have see on the forum?