<% title("Contact") %>

Contact

<%= form_tag email_confirmation_path, method: 'post', html: {role: "form"} do %>
<%= label_tag :name, "Your name" %>
<%= text_field_tag :name, @name, placeholder: "Enter your name...", :autofocus => true, class: "form-control" %>
<%= label_tag :email, "Your email" %>
<%= text_field_tag :email, @email, placeholder: "Enter your email...", class: "form-control" %>
<%= label_tag :message, "Your message" %>
<%= text_area_tag :message, @message, placeholder: "Enter your message...", rows: 10, class: "form-control" %>
<% end %>