agenda-libre-ruby/app/views/devise/registrations/new.html.haml

21 lines
701 B
Plaintext
Raw Normal View History

2019-05-10 18:06:39 +02:00
%h2= t('.sign_up')
2017-11-11 12:44:09 +01:00
= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f|
2019-05-08 14:16:19 +02:00
= render "devise/shared/error_messages", resource: resource
2017-11-11 12:44:09 +01:00
.field
= f.label :email
%br/
2019-05-08 14:16:19 +02:00
= f.email_field :email, autofocus: true, autocomplete: "email"
2017-11-11 12:44:09 +01:00
.field
= f.label :password
2017-11-11 12:44:09 +01:00
- if @minimum_password_length
2019-05-10 18:06:39 +02:00
%em= t('devise.shared.minimum_password_length', count: @minimum_password_length)
%br/
2019-05-08 14:16:19 +02:00
= f.password_field :password, autocomplete: "new-password"
2017-11-11 12:44:09 +01:00
.field
= f.label :password_confirmation
%br/
2019-05-08 14:16:19 +02:00
= f.password_field :password_confirmation, autocomplete: "new-password"
2017-11-11 12:44:09 +01:00
.actions
2019-05-10 18:06:39 +02:00
= f.submit t('.sign_up')
= render "devise/shared/links"