Files
astuto/app/views/devise/passwords/edit.html.erb
Riccardo Graziosi 78049a820c Add internationalization (#114)
🇬🇧 and 🇮🇹
2022-06-05 11:40:43 +02:00

37 lines
1.2 KiB
Plaintext

<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f| %>
<h2><%= t('common.forms.auth.change_password') %></h2>
<%= render "devise/shared/error_messages", resource: resource %>
<%= f.hidden_field :reset_password_token %>
<div class="form-group">
<%= f.label :password, class: "sr-only" %>
<%= f.password_field :password,
autofocus: true,
autocomplete: "new-password",
placeholder: t('common.forms.auth.new_password'),
class: "form-control" %>
<% if @minimum_password_length %>
<small id="passwordHelp" class="form-text text-muted">
(<%= t('common.forms.auth.password_help', { count: @minimum_password_length }) %>)
</small>
<% end %>
</div>
<div class="form-group">
<%= f.label :password_confirmation, class: "sr-only" %>
<%= f.password_field :password_confirmation,
autocomplete: "new-password",
placeholder: t('common.forms.auth.new_password_confirmation'),
class: "form-control" %>
</div>
<div class="actions">
<%= f.submit t('common.forms.auth.change_password'), class: "btn btn-dark btn-primary" %>
</div>
<% end %>
<%= render "devise/shared/links" %>