diff --git a/app/views/users/registrations/new.html.erb b/app/views/users/registrations/new.html.erb deleted file mode 100644 index 96c85d702..000000000 --- a/app/views/users/registrations/new.html.erb +++ /dev/null @@ -1,27 +0,0 @@ -

Sign up

- -<%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %> - <%= devise_error_messages! %> - -
- <%= f.label :email %>
- <%= f.email_field :email, autofocus: true %> -
- -
- <%= f.label :password %> - <% if @validatable %> - (<%= @minimum_password_length %> characters minimum) - <% end %>
- <%= f.password_field :password, autocomplete: "off" %> -
- -
- <%= f.label :password_confirmation %>
- <%= f.password_field :password_confirmation, autocomplete: "off" %> -
- -
- <%= f.submit "Sign up" %> -
-<% end %> diff --git a/app/views/users/registrations/new.html.haml b/app/views/users/registrations/new.html.haml new file mode 100644 index 000000000..a60400215 --- /dev/null +++ b/app/views/users/registrations/new.html.haml @@ -0,0 +1,60 @@ +-#

Sign up

+-# +-#<%= form_for(resource, as: resource_name, url: registration_path(resource_name)) do |f| %> +-# <%= devise_error_messages! %> +-# +-#
+-# <%= f.label :email %>
+-# <%= f.email_field :email, autofocus: true %> +-#
+-# +-#
+-# <%= f.label :password %> +-# <% if @validatable %> +-# (<%= @minimum_password_length %> characters minimum) +-# <% end %>
+-# <%= f.password_field :password, autocomplete: "off" %> +-#
+-# +-#
+-# <%= f.label :password_confirmation %>
+-# <%= f.password_field :password_confirmation, autocomplete: "off" %> +-#
+-# +-#
+-# <%= f.submit "Sign up" %> +-#
+-#<% end %> + +#form_login + = image_tag('logo-tps.png') + %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 + %span.glyphicon.glyphicon-user + = f.email_field :email, class: 'form-control', placeholder: 'Email' + %br + %h4 + = f.label :password + .input-group + .input-group-addon + %span.glyphicon.glyphicon-asterisk + = f.password_field :password, autocomplete: "off", class: 'form-control', placeholder: 'Mot de passe' + %br + .input-group + .input-group-addon + %span.glyphicon.glyphicon-asterisk + = 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' + %br \ No newline at end of file