2016-02-08 19:32:18 +01:00
|
|
|
-#<h2>Sign up</h2>
|
|
|
|
-#
|
|
|
|
-#<%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %>
|
|
|
|
-# <%= devise_error_messages! %>
|
|
|
|
-#
|
|
|
|
-# <div class="field">
|
|
|
|
-# <%= f.label :email %><br />
|
|
|
|
-# <%= f.email_field :email, autofocus: true %>
|
|
|
|
-# </div>
|
|
|
|
-#
|
|
|
|
-# <div class="field">
|
|
|
|
-# <%= f.label :password %>
|
|
|
|
-# <% if @validatable %>
|
|
|
|
-# <em>(<%= @minimum_password_length %> characters minimum)</em>
|
|
|
|
-# <% end %><br />
|
|
|
|
-# <%= f.password_field :password, autocomplete: "off" %>
|
|
|
|
-# </div>
|
|
|
|
-#
|
|
|
|
-# <div class="field">
|
|
|
|
-# <%= f.label :password_confirmation %><br />
|
|
|
|
-# <%= f.password_field :password_confirmation, autocomplete: "off" %>
|
|
|
|
-# </div>
|
|
|
|
-#
|
|
|
|
-# <div class="actions">
|
|
|
|
-# <%= f.submit "Sign up" %>
|
|
|
|
-# </div>
|
|
|
|
-#<% end %>
|
|
|
|
|
|
|
|
= devise_error_messages!
|
|
|
|
|
|
|
|
#form_login
|
2016-11-03 17:20:56 +01:00
|
|
|
= image_tag(LOGO_NAME)
|
2016-02-08 19:32:18 +01:00
|
|
|
%br
|
|
|
|
%h2#gestionnaire_login Changement de mot de passe
|
|
|
|
|
|
|
|
%br
|
|
|
|
%br
|
|
|
|
#new_user
|
|
|
|
= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f|
|
|
|
|
= f.hidden_field :reset_password_token
|
|
|
|
%h4
|
|
|
|
= f.label 'Nouveau mot de passe'
|
|
|
|
|
|
|
|
.input-group
|
|
|
|
.input-group-addon
|
|
|
|
%span.glyphicon.glyphicon-asterisk
|
|
|
|
= f.password_field :password, autofocus: true, autocomplete: "off", class: 'form-control'
|
|
|
|
%br
|
|
|
|
%h4
|
|
|
|
= f.label 'Retaper le mot de passe'
|
|
|
|
.input-group
|
|
|
|
.input-group-addon
|
|
|
|
%span.glyphicon.glyphicon-asterisk
|
|
|
|
= f.password_field :password_confirmation, autocomplete: "off", class: 'form-control'
|
|
|
|
%br
|
|
|
|
%br
|
|
|
|
.actions
|
|
|
|
= f.submit "Changer", class:'btn btn-primary'
|
|
|
|
%br
|