No validation after styling login.php
Permalink
I wanted to style the login.php. So these are the steps that I took.
1. went to config/site_theme_paths.php and uncommented the login
2.Copied login.php from concrete/single_pages/login.php to my theme folder.
3.With login.php in my theme folder I added the necessary css links ie (main.css & typography.css).
-Everything works great except I am not getting the validation needed once a user does not put in their correct username or password. The script is running and taking me to login/do_login.php.
I can't figure out what's wrong. Any help would be much appreciated. Thanks
1. went to config/site_theme_paths.php and uncommented the login
2.Copied login.php from concrete/single_pages/login.php to my theme folder.
3.With login.php in my theme folder I added the necessary css links ie (main.css & typography.css).
-Everything works great except I am not getting the validation needed once a user does not put in their correct username or password. The script is running and taking me to login/do_login.php.
I can't figure out what's wrong. Any help would be much appreciated. Thanks
I think either one will work. I did try moving login.php to the single_pages root folder and had no luck with it. The url to this is:http://imo.luanjenkins.com/index.php/login....
Here's what I've figured out so far... if I comment out login in the config/site_theme_paths.php; The validation works again, as expected. But if I use the login file in the concrete/single_pages/login.php; the validate doesn't work. Which is unexpected because I haven't messed with that file. So the problem could be something to do with the wrong include or styling over doing something or another. I'm not sure. Thanks you for the quick respond though Jordan.
Best,
Luan
Here's what I've figured out so far... if I comment out login in the config/site_theme_paths.php; The validation works again, as expected. But if I use the login file in the concrete/single_pages/login.php; the validate doesn't work. Which is unexpected because I haven't messed with that file. So the problem could be something to do with the wrong include or styling over doing something or another. I'm not sure. Thanks you for the quick respond though Jordan.
Best,
Luan
I found a number of threads all trying to solve this, the following worked for me. Validation code needs to be added to the moved single pages...
http://www.concrete5.org/community/forums/usage/theme-for-registrat...
http://www.concrete5.org/community/forums/usage/theme-for-registrat...
-Jordan