I like to have login and password recovery managed by my own forms and embed them into my theme.
I’m using the well written Jeff Farthing’s plugin “Theme My Login” on some of my projects. But I would like to write my own custom functions and avoid the use of a plugin.
However I would also like to learn more on the process of making custom forms for logging in. While I might spending some time dissecting the plugin as suggested in an answer to a similar question (How to create custom LOGIN and REGISTRATION forms?), I would like to know if there’s any good tutorial, wiki or codex page which I might have missed that digs more or less deeply into user forms writing to have a better understanding of the subject.
I’d rather have the answer “no, there isn’t any” than just “stick to the plugin”, which is kinda obvious and repeated – after all, me and some others reading might have missed something different and new such as a well written article or tutorial.
cheers!
Having done some research into WordPress logins in the past, this is one of the few (possibly only?) tuts I could find where the author actually created a new login/register form.
http://digwp.com/2010/12/login-register-password-code/
Even so, he still uses the generic WordPress wp-login.php code.
Re-coding the entire process is a big task. If you dig into theme-my-login you will see that it’s a few thousand lines of code.
wp_update_user & wp_insert_user might get you started!