2024-11-18 23:27:50 +00:00
|
|
|
<%# Copyright (C) 2024 Manuel Bustillo %>
|
|
|
|
|
2024-11-19 00:26:44 +01:00
|
|
|
<h1>Forgot your password?</h1>
|
|
|
|
|
|
|
|
<%= tag.div(flash[:alert], style: "color:red") if flash[:alert] %>
|
|
|
|
|
|
|
|
<%= form_with url: passwords_path do |form| %>
|
|
|
|
<%= form.email_field :email_address, required: true, autofocus: true, autocomplete: "username", placeholder: "Enter your email address", value: params[:email_address] %><br>
|
|
|
|
<%= form.submit "Email reset instructions" %>
|
|
|
|
<% end %>
|