Reputation: 59
I have joomla site with Version 1.5.23. I am new to joomla and php but in the existing site I am trying to add "Sign up for mailing list" functionality. For this I have added:
<a href="index.php?option=com_user&view=register" class="jregister">
Sign up for our Mailing List</a>
in my index.php
page.
Due to above code I got panel on right side of page.
On click of that link one registration form is displaying, on click of register button validations are not working.
But if I enter correct information then I get successful registration message with confirmation email.
Please suggest why validation for name, password, email are not working. I'm sure this is a really simple error somewhere but its beyond me I'm afraid.
Upvotes: 0
Views: 1391
Reputation: 1130
registration form in joomla is a joomla Component that linked to login module and login form. you should write validation code "by yourself" for registration form in this path:
JOOMLAROOT/component/com_user/views/register/tmpl/default.php
Upvotes: 1