Sha256: b5c57c53cebfc37473c2c71efbb3f320dc39962a51de9d7d98331fd4456b9f0a

Contents?: true

Size: 1.11 KB

Versions: 3

Compression:

Stored size: 1.11 KB

Contents

<div class="container">
  <div class="row justify-content-center">
    <% contact_form ||= Spotlight::ContactForm.new current_url: request.original_url %>
    <%= bootstrap_form_for contact_form, url: spotlight.exhibit_contact_form_path(current_exhibit, contact_form), layout: :horizontal, label_col: 'col-sm-3', control_col: 'col-sm-9', html: { class: 'col-md-offset-2 col-md-8 my-3 '} do |f| %>

      <h2><%= t(:'.title') %></h2>
      <%= f.text_field :name %>
      <span style="display:none;visibility:hidden;">
        <% honeypot_field_name = Spotlight::Engine.config.spambot_honeypot_email_field %>
        <%= f.email_field honeypot_field_name, label: t(:'.honeypot_field_explanation') %>
      </span>
      <%= f.email_field :email %>
      <%= f.text_area :message, rows: 7 %>
      <%= f.hidden_field :current_url %>
      <div class="form-actions">
        <div class="primary-actions">
        <%= link_to t(:'helpers.action.cancel'), '#', class: 'btn btn-link', data: { 'behavior' => 'cancel-link' } %>
        <%= f.submit nil, class: 'btn btn-primary' %>
        </div>
      </div>
    <% end %>
  </div>
</div>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
blacklight-spotlight-3.0.0.alpha.3 app/views/spotlight/shared/_report_a_problem.html.erb
blacklight-spotlight-3.0.0.alpha.2 app/views/spotlight/shared/_report_a_problem.html.erb
blacklight-spotlight-3.0.0.alpha.1 app/views/spotlight/shared/_report_a_problem.html.erb