mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-12 12:16:06 +08:00
25 lines
1.2 KiB
Text
25 lines
1.2 KiB
Text
<%- if controller_name != 'sessions' %>
|
|
<%= link_to t("devise.links.login"), new_session_path(resource_name) %><br />
|
|
<% end -%>
|
|
|
|
<%- if devise_mapping.registerable? && 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 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.each do |provider| %>
|
|
<%= link_to t("devise.links.sign_in_provider", provider: "#{provider.to_s.titleize}"), omniauth_authorize_path(resource_name, provider) %><br />
|
|
<% end -%>
|
|
<% end -%>
|