I'm working on the default login page in Joomla 3.
I overrided
/templates/MYTEMPLATE/html/com_users/login/default_login.php
and it's working fine but in that file to generate the form field it uses JForm, which create the html tags using :
/components/com_users/models/forms/login.xml
Now what I would like to do is override that file to add an additional class to the input field. I tried several combinations:
/templates/MYTEMPLATE/html/com_users/login.xml
/templates/MYTEMPLATE/html/com_users/login/login.xml
/templates/MYTEMPLATE/html/com_users/models/forms/login.xml
/templates/MYTEMPLATE/html/com_users/models/login.xml
No one of them is working.