You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
699 B

<%= simple_form_for(@contact_form,
url: { action: 'contact' },
method: :post
) do |f| %>
<%= error_messages_for(@contact_form) %>
<div style="display:none;">
<%= f.text_field :nickname %>
</div>
<div class="row">
<div class="col-lg-8">
<%= f.input :name, label: 'Your name' %>
<%= f.input :email, label: 'Your email' %>
</div>
<div class="col-lg-4">
<%= f.input :file, as: :file, hint: 'can be attached optionally' %>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<%= f.input :message, as: :text, input_html: { rows: 5 } %>
<%= f.submit 'Send', :class => 'btn btn-primary' %>
</div>
</div>
<% end %>