summaryrefslogtreecommitdiff
path: root/lib/aggiedit_web/templates/user_confirmation/new.html.heex
diff options
context:
space:
mode:
Diffstat (limited to 'lib/aggiedit_web/templates/user_confirmation/new.html.heex')
-rw-r--r--lib/aggiedit_web/templates/user_confirmation/new.html.heex12
1 files changed, 7 insertions, 5 deletions
diff --git a/lib/aggiedit_web/templates/user_confirmation/new.html.heex b/lib/aggiedit_web/templates/user_confirmation/new.html.heex
index 4d9bee3..7cabce3 100644
--- a/lib/aggiedit_web/templates/user_confirmation/new.html.heex
+++ b/lib/aggiedit_web/templates/user_confirmation/new.html.heex
@@ -1,14 +1,16 @@
<h1>Resend confirmation instructions</h1>
<.form let={f} for={:user} action={Routes.user_confirmation_path(@conn, :create)}>
- <%= label f, :email %>
- <%= email_input f, :email, required: true %>
+ <div class="form-group">
+ <%= label f, :email %>
+ <%= email_input f, :email, required: true, class: "form-control" %>
+ </div>
- <div>
- <%= submit "Resend confirmation instructions" %>
+ <div class="mt-2">
+ <%= submit "Resend confirmation instructions", 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) %>