forked from potsda.mn/mobilizon
90ceb4f6fe
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
18 lines
629 B
Elixir
18 lines
629 B
Elixir
<br \>
|
|
|
|
<h3><%= dgettext "coherence", "Resend Confirmation Instructions" %></h3>
|
|
|
|
<%= form_for @changeset, confirmation_path(@conn, :create), [as: :confirmation], fn f -> %>
|
|
|
|
<div class="form-group">
|
|
<%= required_label f, dgettext("coherence", "Email"), class: "control-label" %>
|
|
<%= text_input f, :email, class: "form-control", required: "" %>
|
|
<%= error_tag f, :email %>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<%= submit dgettext("coherence", "Resend Email"), class: "btn btn-primary" %>
|
|
<%= link dgettext("coherence", "Cancel"), to: Coherence.Config.logged_out_url("/"), class: "btn" %>
|
|
</div>
|
|
<% end %>
|