Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. .modal.fade#testimonial_popup{"aria-hidden" => "true", "aria-labelledby" => "Title", :role => "dialog", :tabindex => "-1"}
  2. .modal-dialog
  3. .modal-content
  4. .modal-header
  5. %button.close{"data-dismiss" => "modal", :type => "button"}
  6. %span{"aria-hidden" => "true"} ×
  7. %span.sr-only Close
  8. %h4#fccModalLabel.modal-title Fill Out The Form Below
  9. .modal-body
  10. %form{action: testimonial_path, method: "POST", name: "testimonial_form", role: "form"}
  11. = hidden_field_tag(request_forgery_protection_token.to_s, form_authenticity_token)
  12. .form-group
  13. #messageBlock{style: "display: none;"}
  14. .successmsg
  15. #validation_testimonial_name
  16. .form-group
  17. %input.form-control{name: "name", id:"name", type: "text", placeholder: "Name" }/
  18. %span
  19. #validation_testimonial_customer_title
  20. .form-group
  21. %input.form-control{name: "title", id:"customer_title", type: "text", placeholder: "Title"}/
  22. %span
  23. #validation_testimonial_email
  24. .form-group
  25. %input.form-control{name: "email", id:"email", type: "text", placeholder: "Email" }/
  26. %span
  27. #validation_testimonial_company
  28. .form-group
  29. %input.form-control{name: "company", id:"company", type: "text", placeholder: "Company"}/
  30. %span
  31. #validation_testimonial_phone
  32. .form-group
  33. %input.form-control{name: "phone", id:"phone", type: "phone", placeholder: "Phone Number"}/
  34. %span
  35. #validation_testimonial_comment
  36. .form-group
  37. %textarea.form-control{name: "comment", id:"comment", cols: "40", rows: "5", placeholder: "Comments"}
  38. %span
  39. .modal-footer
  40. .form-group
  41. %button#submit-testimonial.btn.btn-blue.btn-lg.btn-block{:type => "button", :onclick =>"javascript: Testimonials.submitTestimonial();"} Submit
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement