demarches-normaliennes/app/views/users/registrations/new.html.haml

65 lines
1.8 KiB
Text
Raw Normal View History

-# <h2>Sign up</h2>
2015-11-27 18:25:31 +01:00
-#
-# <%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %>
-# <%= devise_error_messages! %>
2015-11-27 18:25:31 +01:00
-#
-# <div class="field">
-# <%= f.label :email %><br />
-# <%= f.email_field :email, autofocus: true %>
-# </div>
2015-11-27 18:25:31 +01:00
-#
-# <div class="field">
-# <%= f.label :password %>
-# <% if @validatable %>
-# <em>(<%= @minimum_password_length %> characters minimum)</em>
-# <% end %><br />
-# <%= f.password_field :password, autocomplete: "off" %>
-# </div>
2015-11-27 18:25:31 +01:00
-#
-# <div class="field">
-# <%= f.label :password_confirmation %><br />
-# <%= f.password_field :password_confirmation, autocomplete: "off" %>
-# </div>
2015-11-27 18:25:31 +01:00
-#
-# <div class="actions">
-# <%= f.submit "Sign up" %>
-# </div>
-# <% end %>
2015-11-27 18:25:31 +01:00
= devise_error_messages!
2015-11-27 18:25:31 +01:00
#form_login
2016-08-30 11:18:43 +02:00
%br
2017-01-03 14:53:56 +01:00
.flag
= image_tag(image_url(LOGO_NAME))
2015-11-27 18:25:31 +01:00
%br
%h2#gestionnaire_login Inscription
%br
%br
#new_user
= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f|
%h4
= f.label :email
.input-group
.input-group-addon
2016-11-14 17:33:45 +01:00
%span.fa.fa-user
= f.email_field :email, class: 'form-control', placeholder: 'Email', value: params[:user_email]
2015-11-27 18:25:31 +01:00
%br
%h4
2017-03-20 12:03:27 +01:00
= f.label :password, 'Mot de passe'
2015-11-27 18:25:31 +01:00
.input-group
.input-group-addon
2016-11-14 17:33:45 +01:00
%span.fa.fa-asterisk
2015-11-27 18:25:31 +01:00
= f.password_field :password, autocomplete: "off", class: 'form-control', placeholder: 'Mot de passe'
%br
.input-group
.input-group-addon
2016-11-14 17:33:45 +01:00
%span.fa.fa-asterisk
2015-11-27 18:25:31 +01:00
= f.password_field :password_confirmation, autocomplete: "off", class: 'form-control', placeholder: 'Répeter le mot de passe'
%br
%br
.actions
= f.submit "S'enregistrer", class: 'btn btn-primary'
2017-04-04 15:27:04 +02:00
%br