5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-04 16:25:45 +00:00
panel/app/views/devise/registrations/new.haml

47 lines
1.6 KiB
Plaintext
Raw Permalink Normal View History

2019-09-11 19:29:05 +00:00
= content_for :body do
- 'black-bg'
2019-07-04 00:11:33 +00:00
.row.align-items-center.justify-content-center.full-height
2019-09-11 19:29:05 +00:00
.col-md-5.align-self-center
2020-02-11 16:56:29 +00:00
%h2= t('.sign_up')
%p= t('.help')
2019-09-11 19:29:05 +00:00
= form_for(resource,
as: resource_name,
url: registration_path(resource_name)) do |f|
2019-07-04 00:11:33 +00:00
= render 'devise/shared/error_messages', resource: resource
2019-09-11 19:29:05 +00:00
2019-07-04 00:11:33 +00:00
.form-group
2019-09-11 19:29:05 +00:00
= f.label :email, class: 'sr-only'
2019-07-04 00:11:33 +00:00
= f.email_field :email, autofocus: true, autocomplete: 'email',
2019-09-11 19:29:05 +00:00
class: 'form-control',
placeholder: t('activerecord.attributes.usuarie.email')
- password = 'activerecord.attributes.usuarie.password'
2019-07-04 00:11:33 +00:00
.form-group
2019-09-11 19:29:05 +00:00
= f.label :password, class: 'sr-only'
2019-07-04 00:11:33 +00:00
= f.password_field :password, autocomplete: 'new-password',
2019-09-11 19:29:05 +00:00
class: 'form-control', min: @minimum_password_length,
aria: { describedby: 'minimum-password-length' },
placeholder: t(password)
- if @minimum_password_length
%small.text-muted.form-text#minimum-password-length
= t('devise.shared.minimum_password_length',
count: @minimum_password_length)
2019-07-04 00:11:33 +00:00
.form-group
2019-09-11 19:29:05 +00:00
= f.label :password_confirmation, class: 'sr-only'
2019-07-04 00:11:33 +00:00
= f.password_field :password_confirmation,
autocomplete: 'new-password',
2019-09-11 19:29:05 +00:00
class: 'form-control',
min: @minimum_password_length,
aria: { describedby: 'minimum-password-length' },
placeholder: t("#{password}_confirmation")
2019-07-04 00:11:33 +00:00
.actions
= f.submit t('.sign_up'),
2019-09-11 19:29:05 +00:00
class: 'btn btn-lg btn-block'
2019-07-04 00:11:33 +00:00
= render 'devise/shared/links'