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

22 lines
670 B
Plaintext
Raw Normal View History

%h2 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
%em
(#{@minimum_password_length} characters minimum)
%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
= f.submit "Sign up"
= render "devise/shared/links"