How do I change my Joomla login page?

I have difficult times trying to figure out which file on my server creates the page located on the page "http://www.website.com/component/users/?view=login". I do not, but I have a component catalog. I put in this and checked out the com_users / views templates, but I was not able to edit anything that reflected the changes on the page in question. It should be noted that if I change the view.html.php file to "components / com_users / views / login", it seems to affect the page, and it looks like it wants to load content on the page from a line of code that reads:

$menus = $app->getMenu(); 

Any idea on how to edit this page?

+4
source share
2 answers

Thanks to the GDP for the provided answer, I was looking for:

"You can also check the \ html folder of your active template. If \ yourtemplate \ html \ com_users templates exist, Joomla will check and download from there if the appropriate view and file are found."

+4
source

This is the file you want to change if you intend to make changes to the style or layout on the login page.

 components/com_users/views/login/tmpl/default_login.php 

...

A file that contains functions for the login page and which I would not recommend editing:

 components/com_users/views/view.html.php 
+6
source

All Articles