<%= 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 -> %>
<%= email_input f, :email, class: "form-control", placeholder: "e.g., babka@73k.us", maxlength: User.max_email, required: true %> <%= label f, :email do %> <%= icon_div @conn, "bi-at", [class: "icon baseline text-muted"] %> Email <% end %> 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) %>