<% content_for :title, "Reset Password" %>
<%= link_to root_path, class: "flex items-center gap-2" do %> Sanasto Wiki <% end %>

Reset your password

Enter your email address and we'll send you a link to reset your password.

<% if flash[:alert] %> <% end %> <%= form_with url: password_resets_path, method: :post, local: true, data: { turbo: false }, class: "space-y-5" do |form| %>
<%= form.label :email, "Email", class: "block text-sm font-medium text-slate-700 mb-2" %> <%= form.email_field :email, autofocus: true, autocomplete: "email", required: true, placeholder: "you@example.com", class: "block w-full px-4 py-3 bg-white border border-slate-200 rounded-lg shadow-sm focus:ring-2 focus:ring-indigo-500 focus:border-indigo-500 transition" %>
<%= form.submit "Send Reset Instructions", class: "w-full bg-indigo-600 text-white px-4 py-3 rounded-lg text-sm font-semibold hover:bg-indigo-700 transition cursor-pointer" %>
<% end %>
<%= link_to login_path, class: "text-sm text-slate-600 hover:text-indigo-600 transition inline-flex items-center gap-1" do %> Back to Sign In <% end %>