mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 03:37:56 +01:00
28 lines
989 B
Plaintext
28 lines
989 B
Plaintext
<h2>Change your password</h2>
|
|
|
|
<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f| %>
|
|
<%= render "devise/shared/error_messages", resource: resource %>
|
|
<%= f.hidden_field :reset_password_token %>
|
|
|
|
<div class="form-group">
|
|
<%= f.label :password, "New password" %>
|
|
<%= f.password_field :password, autofocus: true, autocomplete: "new-password", class: "form-control" %>
|
|
<% if @minimum_password_length %>
|
|
<small id="passwordHelp" class="form-text text-muted">
|
|
(<%= @minimum_password_length %> characters minimum)
|
|
</small>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<%= f.label :password_confirmation, "Confirm new password" %>
|
|
<%= f.password_field :password_confirmation, autocomplete: "new-password", class: "form-control" %>
|
|
</div>
|
|
|
|
<div class="actions">
|
|
<%= f.submit "Change my password", class: "btn btn-primary" %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<%= render "devise/shared/links" %>
|