forked from fixin.me/fixin.me
9 lines
403 B
Plaintext
9 lines
403 B
Plaintext
<%= tabular_form_for resource, url: user_confirmation_path, html: { method: :post } do |f| %>
|
|
<%= render "users/shared/error_messages", resource: resource %>
|
|
|
|
<%= f.email_field :email, required: true, size: 30, autofocus: true, autocomplete: "email",
|
|
value: (resource.pending_reconfirmation? ? resource.unconfirmed_email : resource.email) %>
|
|
|
|
<%= f.submit t(:resend_confirmation) %>
|
|
<% end %>
|