Submit social housing lettings and sales data (CORE)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<%= form_for(resource, as: resource_name, url: password_path(resource_name), html: { method: :put }) do |f| %>
|
|
|
|
<div class="govuk-grid-row">
|
|
|
|
<div class="govuk-grid-column-two-thirds">
|
|
|
|
<h1 class="govuk-heading-l">Reset your password</h1>
|
|
|
|
<%= render "devise/shared/error_messages", resource: resource %>
|
|
|
|
|
|
|
|
<%= f.hidden_field :reset_password_token %>
|
|
|
|
|
|
|
|
<%= f.govuk_password_field :password,
|
|
|
|
label: { text: "New password" },
|
|
|
|
hint: @minimum_password_length ? { text: "Your password must be at least #{@minimum_password_length} characters and hard to guess." } : nil,
|
|
|
|
autocomplete: "new-password"
|
|
|
|
%>
|
|
|
|
|
|
|
|
<%= f.govuk_submit "Reset password" %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<% end %>
|