summaryrefslogtreecommitdiff
path: root/lib/aggiedit_web/templates/user_reset_password/edit.html.heex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/aggiedit_web/templates/user_reset_password/edit.html.heex')
-rw-r--r--lib/aggiedit_web/templates/user_reset_password/edit.html.heex22
1 files changed, 13 insertions, 9 deletions
diff --git a/lib/aggiedit_web/templates/user_reset_password/edit.html.heex b/lib/aggiedit_web/templates/user_reset_password/edit.html.heex
index d8efb4b..cac89e5 100644
--- a/lib/aggiedit_web/templates/user_reset_password/edit.html.heex
+++ b/lib/aggiedit_web/templates/user_reset_password/edit.html.heex
@@ -7,19 +7,23 @@
</div>
<% end %>
- <%= label f, :password, "New password" %>
- <%= password_input f, :password, required: true %>
- <%= error_tag f, :password %>
+ <div class="form-group mt-2">
+ <%= label f, :password, "New Password" %>
+ <%= password_input f, :password, required: true, class: "form-control" %>
+ <%= error_tag f, :password %>
+ </div>
- <%= label f, :password_confirmation, "Confirm new password" %>
- <%= password_input f, :password_confirmation, required: true %>
- <%= error_tag f, :password_confirmation %>
+ <div class="form-group mt-2">
+ <%= label f, :password_confirmation, "Confirm new password" %>
+ <%= password_input f, :password_confirmation, required: true, class: "form-control" %>
+ <%= error_tag f, :password_confirmation %>
+ </div>
- <div>
- <%= submit "Reset password" %>
+ <div class="form-group mt-2">
+ <%= submit "Reset password", class: "btn btn-primary" %>
</div>
</.form>
-
+<hr>
<p>
<%= link "Register", to: Routes.user_registration_path(@conn, :new) %> |
<%= link "Log in", to: Routes.user_session_path(@conn, :new) %>