24 lines
831 B
Plaintext
24 lines
831 B
Plaintext
<%= back_link_to %>
|
|
|
|
<h2><%= t("admin.signature_sheets.new.title") %></h2>
|
|
|
|
<%= form_for [:admin, @signature_sheet] do |f| %>
|
|
<%= render "shared/errors",
|
|
resource: @signature_sheet %>
|
|
|
|
<div class="small-12 medium-6 large-4">
|
|
<%= f.select :signable_type, signable_options %>
|
|
</div>
|
|
|
|
<div class="small-12 medium-6 large-4">
|
|
<%= f.text_field :signable_id %>
|
|
</div>
|
|
|
|
<%= f.label :required_fields_to_verify %>
|
|
<p class="help-text" id="required-fields-to-verify-help-text"><%= required_fields_to_verify_text_help %></p>
|
|
<p class="help-text"> <%= example_text_help %></p>
|
|
<%= f.text_area :required_fields_to_verify, rows: "6", label: false, aria: { describedby: "required-fields-to-verify-help-text" } %>
|
|
|
|
<%= f.submit(class: "button", value: t("admin.signature_sheets.new.submit")) %>
|
|
<% end %>
|