38 lines
1.3 KiB
Elixir
38 lines
1.3 KiB
Elixir
<div class="row justify-content-center">
|
|
<div class="col-11 col-sm-10 col-md-8 col-lg-7 col-xl-6 col-xxl-5">
|
|
|
|
<h2>
|
|
<%= icon_div @conn, "bi-arrow-repeat", [class: "icon baseline"] %>
|
|
Resend confirmation instructions
|
|
</h2>
|
|
<p class="lead">We'll send you another email with instructions to confirm your email address.</p>
|
|
|
|
<%= form_for :user, Routes.user_confirmation_path(@conn, :create), [class: "needs-validation", novalidate: true], fn f -> %>
|
|
|
|
<%= label f, :email, class: "form-label" %>
|
|
<div class="inner-addon left-addon mb-3">
|
|
<%= icon_div @conn, "bi-at", [class: "icon is-left text-muted fs-5"] %>
|
|
<%= email_input f, :email,
|
|
value: @current_user && @current_user.email || "",
|
|
placeholder: "e.g., babka@73k.us",
|
|
class: "form-control",
|
|
maxlength: User.max_email,
|
|
required: true,
|
|
autofocus: !@current_user
|
|
%>
|
|
<span class="invalid-feedback">must be a valid email address</span>
|
|
</div>
|
|
|
|
<div class="mb-3">
|
|
<%= submit "Resend confirmation instructions", class: "btn btn-primary" %>
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
<p>
|
|
<%= link "Register", to: Routes.user_registration_path(@conn, :new) %> |
|
|
<%= link "Log in", to: Routes.user_session_path(@conn, :new) %>
|
|
</p>
|
|
|
|
</div>
|
|
</div>
|