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.
23 lines
624 B
23 lines
624 B
<%= simple_form_for(@contact_form, |
|
url: { action: 'contact' }, |
|
html: { method: :post, class: 'form-horizontal' } |
|
) do |f| %> |
|
|
|
<%= error_messages_for(@contact_form) %> |
|
|
|
<div style="display:none;"> |
|
<%= f.text_field :nickname %> |
|
</div> |
|
|
|
<div class="inputs"> |
|
<%= f.input :name, label: 'Your name' %> |
|
<%= f.input :email, label: 'Your email' %> |
|
<%= f.input :file, as: :file, hint: 'can be attached optionally' %> |
|
<%= f.input :message, as: :text, input_html: { rows: 10 } %> |
|
</div> |
|
|
|
<div class="form-actions"> |
|
<%= f.submit 'Send', :class => 'btn btn-primary' %> |
|
</div> |
|
|
|
<% end %>
|
|
|