summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/aggiedit_web/templates/user_reset_password/new.html.heex10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/aggiedit_web/templates/user_reset_password/new.html.heex b/lib/aggiedit_web/templates/user_reset_password/new.html.heex
index 126cdba..792547b 100644
--- a/lib/aggiedit_web/templates/user_reset_password/new.html.heex
+++ b/lib/aggiedit_web/templates/user_reset_password/new.html.heex
@@ -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>