507651f5ba
Workaround for show order deface override nuking attributes of the close button.
12 lines
403 B
Text
12 lines
403 B
Text
= simple_form_for @invite, remote: true do |form|
|
|
.modal-header
|
|
= close_button :modal
|
|
%h3= t '.title'
|
|
.modal-body
|
|
= t('.body', group: @invite.group.name).html_safe
|
|
= form.hidden_field :user_id
|
|
= form.hidden_field :group_id
|
|
= form.input :email
|
|
.modal-footer
|
|
= link_to t('ui.close'), '#', class: 'btn', data: {dismiss: 'modal'}
|
|
= form.submit class: 'btn btn-primary'
|