Hi all i am trying to add placeholder to a skin i am building on roundcube. i want it to say username for username and password for password. i know its possible using html but the issue is i dont have acess to the form so i can add placeholder text to the html. I think the only way will be with js or css but as of yet not found a working solution and hoping someone here can help. Here is the form html it has:
<html>
<input type="hidden" name="_task" value="login"><input type="hidden" name="_action" value="login"><input type="hidden" name="_timezone" id="rcmlogintz" value="_default_"><input type="hidden" name="_url" id="rcmloginurl" value=""><table><tbody><tr><td class="title"><label for="rcmloginuser">Username</label>
</td>
<td class="input"><input name="_user" id="rcmloginuser" required="required" size="40" autocapitalize="off" autocomplete="off" type="text"></td>
</tr>
<tr><td class="title"><label for="rcmloginpwd">Password</label>
</td>
<td class="input"><input name="_pass" id="rcmloginpwd" required="required" size="40" autocapitalize="off" autocomplete="off" type="password"></td>
</tr>
</tbody>
</html>
Many thanks all.