I have developed a theme for Wordpress and I need to customize login and registrations form. At the moment, as usual, the login and the registration URL are:
http://www.example.com/wp-login.php
http://www.example.com/wp-login.php?action=register
I would like to create INLINE form, with INLINE I mean that this form must to be inside my pages and not in a single(dedicated) web page.
For login I need:
- Email
- Password
For Registration:
- Name
- Email
- Password
(and a pseudo check for "spammers" like captcha or arithmetical operations)
as I told I need these forms in my pages, not in a dedicated page.
Two questions:
1- Can I do it WITHOUT using a plugin?
2- If I can, how can I show any errors (example: wrong email, wrong password) inline with the form? (without redirect to wp-login.php)
Thank you!