forked from fixin.me/fixin.me
10 lines
344 B
Plaintext
10 lines
344 B
Plaintext
<%= labeled_form_for resource, url: user_confirmation_path,
|
|
html: {class: 'main-area'} do |f| %>
|
|
|
|
<%= 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 %>
|