<%= icon_div @conn, "mdi-head-question-outline", [class: "icon baseline"] %> Forgot your password?

We'll send you an email with instructions to reset your password.

<%= form_for :user, Routes.user_reset_password_path(@conn, :create), [class: "needs-validation", novalidate: true], fn f -> %> <%= label f, :email, class: "form-label" %>
<%= icon_div @conn, "bi-at", [class: "icon is-left text-muted fs-5"] %> <%= email_input f, :email, placeholder: "e.g., babka@73k.us", class: "form-control", maxlength: User.max_email, required: true, autofocus: true %> must be a valid email address
<%= submit "Send instructions to reset password", class: "btn btn-primary" %>
<% end %>

<%= link "Register", to: Routes.user_registration_path(@conn, :new) %> | <%= link "Log in", to: Routes.user_session_path(@conn, :new) %>