mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-07 07:26:20 +08:00
23 lines
1.1 KiB
Text
23 lines
1.1 KiB
Text
<%- if controller_name != 'sessions' %>
|
|
<%= link_to t("devise.links.login"), new_session_path(resource_name) %><br />
|
|
<% end -%>
|
|
|
|
<%- if devise_mapping.registerable? && Rails.configuration.x.enable_user_registration && controller_name != 'registrations' %>
|
|
<%= link_to t("devise.links.signup"), new_registration_path(resource_name) %><br />
|
|
<% end -%>
|
|
|
|
<%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %>
|
|
<%= link_to t("devise.links.forgot"), new_password_path(resource_name) %><br />
|
|
<% end -%>
|
|
|
|
<%- if Rails.configuration.x.enable_email_confirmations && devise_mapping.confirmable? && controller_name != 'confirmations' %>
|
|
<%= link_to t("devise.links.not_receive_confirmation"), new_confirmation_path(resource_name) %><br />
|
|
<% end -%>
|
|
|
|
<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %>
|
|
<%= link_to t("devise.links.not_receive_unlock"), new_unlock_path(resource_name) %><br />
|
|
<% end -%>
|
|
|
|
<%- if devise_mapping.omniauthable? && resource_class.omniauth_providers.any? %>
|
|
<div data-hook="omniauth-sign-in-links"></div>
|
|
<% end -%>
|