use devise instead auth0

This commit is contained in:
João Geonizeli
2021-08-09 22:07:48 -03:00
parent 15abf28e80
commit 645b818f6c
48 changed files with 519 additions and 399 deletions

View File

@@ -1,26 +1,25 @@
<h1><%= t('.change_your_password') %></h1>
<h2><%= t('.change_your_password') %></h2>
<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f| %>
<%= bootstrap_devise_error_messages! %>
<%= render "devise/shared/error_messages", resource: resource %>
<%= f.hidden_field :reset_password_token %>
<div class="form-group">
<%= f.label :password, t('.new_password') %>
<%= f.password_field :password, autofocus: true, class: 'form-control' %>
<div class="field">
<%= f.label :password, t('.new_password') %><br />
<% if @minimum_password_length %>
<small class="form-text text-muted"><%= t('devise.shared.minimum_password_length', count: @minimum_password_length) %></small>
<em><%= t('devise.shared.minimum_password_length', count: @minimum_password_length) %></em><br />
<% end %>
<%= f.password_field :password, autofocus: true, autocomplete: "new-password" %>
</div>
<div class="form-group">
<%= f.label :password_confirmation, t('.confirm_new_password') %>
<%= f.password_field :password_confirmation, autocomplete: 'off', class: 'form-control' %>
<div class="field">
<%= f.label :password_confirmation, t('.confirm_new_password') %><br />
<%= f.password_field :password_confirmation, autocomplete: "new-password" %>
</div>
<div class="form-group">
<%= f.submit t('.change_my_password'), class: 'btn btn-primary' %>
<div class="actions">
<%= f.submit t('.change_my_password') %>
</div>
<% end %>
<%= render 'devise/shared/links' %>
<%= render "devise/shared/links" %>

View File

@@ -1,16 +1,16 @@
<h1><%= t('.forgot_your_password') %></h1>
<h2><%= t('.forgot_your_password') %></h2>
<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :post }) do |f| %>
<%= bootstrap_devise_error_messages! %>
<%= render "devise/shared/error_messages", resource: resource %>
<div class="form-group">
<%= f.label :email %>
<%= f.email_field :email, autofocus: true, autocomplete: 'email', class: 'form-control' %>
<div class="field">
<%= f.label :email %><br />
<%= f.email_field :email, autofocus: true, autocomplete: "email" %>
</div>
<div class="form-group">
<%= f.submit t('.send_me_reset_password_instructions'), class: 'btn btn-primary' %>
<div class="actions">
<%= f.submit t('.send_me_reset_password_instructions') %>
</div>
<% end %>
<%= render 'devise/shared/links' %>
<%= render "devise/shared/links" %>