- form_tag contact_path do |f| %h3 = label :contact, :name, "Name:" = text_field :contact, :name %h3 = label :contact, :email, "E-mail:" = text_field :contact, :email %h3 = label :contact, :phone, "Phone:" = text_field :contact, :phone %h3 = label :contact, :message, "Message:" = text_area :contact, :message, :cols => '40', :rows => '20' %h3= submit_tag 'Send Message', :class => 'submit'