<% @title = "Resend confirmation instructions" %>

<%= app_name %>

Resend Account Confirmation Instuctions

<%= form_for resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post, class: "form-horizontal" } do |f| %> <%= f.error_notification %> <%= f.form_group :email, class: "row" do |f| %> <%= f.label :email, class: "form-label" %> <%= f.email_field :email, autofocus: true, class: "form-control" %> <%= f.error_messages %> <% end %>
<%= link_to "Sign in", new_user_session_path(resource_name) %> <%= f.submit "Resend confirmation instructions", class: 'btn btn-primary ml-auto' %>
<% end %>