mirror of
https://github.com/docusealco/docuseal.git
synced 2026-06-23 04:10:11 +00:00
12 lines
570 B
Plaintext
12 lines
570 B
Plaintext
<%= form_for '', url: submit_form_decline_index_path(submitter.slug), method: :post do |f| %>
|
|
<div class="mt-4 text-center">
|
|
<%= t(:notify_the_sender_with_the_reason_you_declined) %>
|
|
</div>
|
|
<div class="form-control mt-2">
|
|
<%= f.text_area :reason, required: true, class: 'base-input w-full py-2 h-40', dir: 'auto', placeholder: t('provide_a_reason'), style: 'height: 200px', rows: '10' %>
|
|
</div>
|
|
<toggle-submit dir="auto" class="form-control mt-4">
|
|
<%= f.button button_title(title: t(:decline)), class: 'base-button' %>
|
|
</toggle-submit>
|
|
<% end %>
|