9 lines
381 B
Plaintext
9 lines
381 B
Plaintext
|
<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 %>
|