2016-02-12 23:52:43 +08:00
|
|
|
<%- if controller_name != 'sessions' %>
|
|
|
|
<%= link_to t("devise.links.login"), new_session_path(resource_name) %><br />
|
|
|
|
<% end -%>
|
|
|
|
|
2017-01-30 22:04:02 +08:00
|
|
|
<%- if devise_mapping.registerable? && Rails.configuration.x.enable_user_registration && controller_name != 'registrations' %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<%= 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 -%>
|
|
|
|
|
2016-11-29 23:12:35 +08:00
|
|
|
<%- if Rails.configuration.x.enable_email_confirmations && devise_mapping.confirmable? && controller_name != 'confirmations' %>
|
2016-02-12 23:52:43 +08:00
|
|
|
<%= 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 -%>
|