Guest User

Untitled

a guest
Apr 25th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. $form = new Forge();
  2. $form->input('name')->label('Name')->rules('required')->class('input-field')->style('width:300px');
  3. $form->input('company_name')->label('Company Name')->class('input-field')->style('width:300px');
  4. $form->input('email')->label('Email')->rules('required|valid_email')->class('input-field')->style('width:300px');
  5. $form->input('phone')->label('Phone Number')->rules('required')->class('input-field')->style('width:300px');
  6. $form->input('website')->label('Website')->class('input-field')->style('width:300px');
  7. $form->input('start_date')->label('When would you like to get started?')->rules('required')->class('input-field')->style('width:300px');
  8. $form->input('budget')->label('What is your estimated budget?')->class('input-field')->style('width:300px');
  9. $form->textarea('message')->label("Describe your project in detail:")->rules('required')->style('width:750px; height: 100px;')->class('input-field');
  10.  
  11. $view = new View('about', array(
  12. 'form_quote' => $form,
  13. ));
  14.  
  15. $view->header = new View('header', array(
  16. 'title' => 'Known Gallery :: About',
  17. 'extra_head_content' => array
  18. (
  19. '<script src="' . url::base() . 'media/js/scrollto.js" type="text/javascript"></script>',
  20. ),
  21. ));
  22.  
  23. $view->footer = new View('footer');
  24. $view->render(TRUE);
Add Comment
Please, Sign In to add comment