mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 03:07:52 +01:00
37 lines
1.2 KiB
Plaintext
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: "btnPrimary" %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<%= render "devise/shared/links" %>
|