Forgot Your Password?
Enter your email address and we'll send you instructions to reset your password.
<%= form_with url: password_resets_path, method: :post, class: "space-y-4" do |f| %>
<%= f.label :email, class: "block text-sm font-medium text-gray-700" %>
<%= f.email_field :email, autofocus: true, required: true, placeholder: "your@email.com", class: "mt-1 block w-full rounded-md border-gray-300 shadow-sm focus:border-indigo-500 focus:ring-indigo-500" %>
<%= f.submit "Send Reset Instructions", class: "w-full px-4 py-2 bg-indigo-600 text-white rounded-md hover:bg-indigo-700" %>
<% end %>
<%= link_to "← Back to Login", login_path, class: "text-indigo-600 hover:text-indigo-800" %>
<% if Rails.env.development? %>
Development Mode: Password reset emails are being captured by Mailpit.
View them at localhost:8025
<% end %>