summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLogan Hunt <loganhunt@simponic.xyz>2022-04-21 19:19:22 -0600
committerLogan Hunt <loganhunt@simponic.xyz>2022-04-21 19:19:22 -0600
commit95efeaab43edc8f56e833bd9d378c877d454dbb7 (patch)
treeaedf80dec3672fbe7c7bcb2205dbfd5753e2e51f
parent2c225727f006e58bf8f6fffd608b190b2fdd571d (diff)
downloadaggiedit-95efeaab43edc8f56e833bd9d378c877d454dbb7.tar.gz
aggiedit-95efeaab43edc8f56e833bd9d378c877d454dbb7.zip
Reset password UI update
-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>