Advertisement
Northys

Untitled

Jul 23rd, 2014
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. function createComponentSignInForm()
  2. {
  3.     $form = new Form;
  4.     $form->addText('user')->setRequired();
  5.     $form->addPassword('password')->setRequired();
  6.     $form->addSubmit('send');
  7.     return $form;
  8. }
  9. <form n:name=signInForm class=form>
  10.     <p><label n:name=user>Username: <input n:name=user size=20></label>
  11.     <p><label n:name=password>Password: <input n:name=password></label>
  12.     <p><input n:name=send class="btn btn-default">
  13. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement