I am using Zend-Framework in my project. I made a login form using the Zend Form that contains the User Id and Passwords fields with a submit button. Everything is
In your viewscript file where you print the form, e.g. login.phtml
login.phtml
echo $this->form;
you can specify any other html markup, e.g. links
echo " 'authentication', 'action' => 'lostPW' ) )."'> Lost pw ";
'authentication', 'action' => 'lostPW' ) )."'> Lost pw
So you actually do not write it in the form itself but in the view script where you echo the form.