mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 17:41:41 +00:00
limpieza
This commit is contained in:
parent
6434d1c896
commit
8f6442ece3
2 changed files with 1 additions and 40 deletions
|
@ -3,7 +3,7 @@
|
|||
|
||||
.row
|
||||
.col
|
||||
%table.table.table-striped.table-responsive-md
|
||||
%table.table.table-responsive-md
|
||||
%thead
|
||||
%tr
|
||||
%th= t('help.markdown.input')
|
||||
|
|
|
@ -1,39 +0,0 @@
|
|||
.row.align-items-center.justify-content-center.full-height
|
||||
.col-md-6.align-self-center
|
||||
- if @invitadx.errors.full_messages.empty?
|
||||
.alert.alert-dismissible.alert-info.fade.show{role: 'alert'}
|
||||
= raw CommonMarker.render_doc(@site.config.dig('welcome', 'message') || t('.welcome')).to_html
|
||||
%button.close{type: 'button',
|
||||
data: { dismiss: 'alert' },
|
||||
'aria-label': t('help.close') }
|
||||
%span{'aria-hidden': true} ×
|
||||
- else
|
||||
.alert.alert-dismissible.alert-info.fade.show{role: 'alert'}
|
||||
%ul
|
||||
- @invitadx.errors.messages.each do |_, message|
|
||||
%li= message
|
||||
%button.close{type: 'button',
|
||||
data: { dismiss: 'alert' },
|
||||
'aria-label': t('help.close') }
|
||||
%span{'aria-hidden': true} ×
|
||||
|
||||
= form_for @invitadx do |f|
|
||||
= f.hidden_field :site, value: @site.id
|
||||
.form-group
|
||||
= f.email_field :email, class: 'form-control', placeholder: t('.email')
|
||||
.form-group
|
||||
= f.password_field :password, class: 'form-control', placeholder: t('.password')
|
||||
.form-group
|
||||
= f.password_field :password_confirmation, class: 'form-control', placeholder: t('.password_confirmation')
|
||||
- if @site.config.dig('privacy_policy')
|
||||
.form-check
|
||||
= f.check_box :acepta_politicas_de_privacidad,
|
||||
class: 'form-check-input'
|
||||
= f.label :acepta_politicas_de_privacidad,
|
||||
raw(t('.acepta_politicas_de_privacidad',
|
||||
privacy_policy: @site.config['privacy_policy'])),
|
||||
class: 'form-check-label'
|
||||
|
||||
.form-group
|
||||
- button = @site.config.dig('welcome', 'button')
|
||||
= f.submit t('.submit'), class: 'btn btn-lg btn-primary btn-block', style: (button) ? "background-color: #{button};" : ''
|
Loading…
Reference in a new issue