Joomla Login Module has its default Alert / Varification message for Password Reset, Invalid Username password, Username Reset.
So if you are looking where to change the "Messages". Here is the file which contains those informations.
components/com_user/controller.php
eg.
JText::_('You are already registered.')
JText::_( 'REG_COMPLETE_ACTIVATE' );
So just copy the message you want to change and search in the page and replace with your own text.
Hope this helps. Enjoy :-)
While using a custom template you might have experienced that "Default Joomla Alert Message Don't Appear". This is due to you have or the template designer has not assigned the position for Message Alerts.
Open index.php file of your template and add this
<jdoc:include type="message" />
just before your your component declaration
<jdoc:include type="component" />
Hope this help :)












