Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
–2 votes
872 views
in Themes by
hi

in qa-theme.php (snow theme) designer call login form by this code :

'<form id="qa-loginform" action="'.$login['url'].'" method="post">',
                            '<input type="text" id="qa-userid" name="emailhandle" placeholder="'.trim(qa_lang_html(qa_opt('allow_login_email_only') ? 'users/email_label' : 'users/email_handle_label'), ':').'" />',
                            '<input type="password" id="qa-password" name="password" placeholder="'.trim(qa_lang_html('users/password_label'), ':').'" />',

                            '<input type="hidden" name="code" value="'.qa_html(qa_get_form_security_code('login')).'"/>',
                            '<input type="submit" value="'.$login['label'].'" class="dologin22" name="dologin" />',
                        '</form>',

I want to get register form too !

please help me
Q2A version: 1.6.3

Please log in or register to answer this question.

...