Reset password UI update

This commit is contained in:
Logan Hunt 2022-04-21 19:19:22 -06:00
parent 2c225727f0
commit 95efeaab43
Signed by untrusted user who does not match committer: simponic
GPG Key ID: 52B3774857EB24B1

View File

@ -1,11 +1,13 @@
<h1>Forgot your password?</h1>
<.form let={f} for={:user} action={Routes.user_reset_password_path(@conn, :create)}>
<%= label f, :email %>
<%= email_input f, :email, required: true %>
<div class="form-group mt-2">
<%= label f, :email %>
<%= email_input f, :email, required: true, class: "form-control" %>
</div>
<div>
<%= submit "Send instructions to reset password" %>
<div class="form-group mt-2">
<%= submit "Send instructions to reset password", class: "btn btn-primary" %>
</div>
</.form>