mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 05:41:42 +00:00
13 lines
597 B
Text
13 lines
597 B
Text
|
.row.align-items-center.justify-content-center.full-height
|
||
|
.col-md-6.align-self-center
|
||
|
%h2= t 'devise.invitations.new.header'
|
||
|
= form_for(resource, as: resource_name, url: invitation_path(resource_name), html: { method: :post }) do |f|
|
||
|
= render 'devise/shared/error_messages', resource: resource
|
||
|
- resource.class.invite_key_fields.each do |field|
|
||
|
.form-group
|
||
|
= f.label field
|
||
|
= f.text_field field, class: 'form-control'
|
||
|
.actions
|
||
|
= f.submit t('devise.invitations.new.submit_button'),
|
||
|
class: 'btn btn-lg btn-primary btn-block'
|