Manuel Bustillo 45b16598e3 Revert "Add copyright notice"
This reverts commit 134bf27955e6caab0f7cc731f72551daae6f2a17.
2024-11-30 10:44:22 +01:00

10 lines
505 B
Plaintext

<h1>Update your password</h1>
<%= tag.div(flash[:alert], style: "color:red") if flash[:alert] %>
<%= form_with url: password_path(params[:token]), method: :put do |form| %>
<%= form.password_field :password, required: true, autocomplete: "new-password", placeholder: "Enter new password", maxlength: 72 %><br>
<%= form.password_field :password_confirmation, required: true, autocomplete: "new-password", placeholder: "Repeat new password", maxlength: 72 %><br>
<%= form.submit "Save" %>
<% end %>