<%- if controller_name != 'sessions' %> <% # Localized by Ennder, "Sign in" -%> <%= link_to t('devise.sessions.sign_in'), new_session_path(resource_name) %>
<% end -%> <%- if devise_mapping.registerable? && controller_name != 'registrations' %> <% # Localized by Ennder, "Sign up" -%> <%= link_to t('devise.registrations.sign_up'), new_registration_path(resource_name) %>
<% end -%> <%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %> <% # Localized by Ennder, "Forgot your password?" -%> <%= link_to t('devise.passwords.link'), new_password_path(resource_name) %>
<% end -%> <%- if devise_mapping.confirmable? && controller_name != 'confirmations' %> <% # Localized by Ennder, "Didn't receive confirmation instructions?" -%> <%= link_to t('devise.confirmations.link'), new_confirmation_path(resource_name) %>
<% end -%> <%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %> <% # Localized by Ennder, "Didn't receive unlock instructions?" -%> <%= link_to t('devise.unlocks.link'), new_unlock_path(resource_name) %>
<% end -%> <%- if devise_mapping.omniauthable? %> <%- resource_class.omniauth_providers.each do |provider| %> <%= link_to "Sign in with #{provider.to_s.titleize}", omniauth_authorize_path(resource_name, provider) %>
<% end -%> <% end -%>