Manuel Bustillo 775e6146ab Revert "Remove unnecessary views"
This reverts commit 8b336164362bada541f1dbac48dd46419638d5f5.
2024-11-30 10:44:19 +01:00

11 lines
424 B
Plaintext

<%# Copyright (C) 2024 Manuel Bustillo %>
<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 %>