Sha256: 211cab870bfd25f5bd036cc032159c7d8ee195c74ef7b86b71232ebe1543963e
Contents?: true
Size: 1.17 KB
Versions: 18
Compression:
Stored size: 1.17 KB
Contents
<%- if controller_name != 'sessions' %> <%= link_to t("authentication.sign_in"), new_session_path(resource_name) %><br /> <% end -%> <%- if devise_mapping.registerable? && controller_name != 'registrations' %> <%= link_to t("authentication.sign_up"), new_registration_path(resource_name) %><br /> <% end -%> <%- if devise_mapping.recoverable? && controller_name != 'passwords' %> <%= link_to t("authentication.forgot_password?"), new_password_path(resource_name) %><br /> <% end -%> <%- if devise_mapping.confirmable? && controller_name != 'confirmations' %> <%= link_to t("authentication.didnt_receive_confirmation_instruction?"), new_confirmation_path(resource_name) %><br /> <% end -%> <%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %> <%= link_to t("authentication.didnt_receive_unlock_instruction?"), new_unlock_path(resource_name) %><br /> <% end -%> <%- if devise_mapping.omniauthable? %> <%- resource_class.omniauth_providers.each do |provider| %> <%= link_to "#{t("authentication.sign_in_with")} #{provider.to_s.titleize}", omniauth_authorize_path(resource_name, provider) %><br /> <% end -%> <% end -%>
Version data entries
18 entries across 18 versions & 1 rubygems