Advertisement
Guest User

Html

a guest
Jul 21st, 2014
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. </head>
  6.  
  7. <body>
  8. <h1>Login</h1>
  9. {{ Form::open(array('action' => 'AuthController@login')) }}
  10. {{ Form::text('login_email', NULL, array('placeholder' => 'Email...')) }}
  11. <br />
  12. {{ Form::password('login_password', array('placeholder' => 'Password...')) }}
  13. <br />
  14. {{ Form::submit('Submit!') }}
  15. {{ Form::close() }}
  16. </body>
  17. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement