Cf. conversation https://github.com/consuldemocracy/consuldemocracy/pull/5955#discussion_r2158715957 Need to get this i18n_spec.rb to run to delete the key shared.links.signin_with_provider.
15 lines
614 B
Plaintext
15 lines
614 B
Plaintext
<div class="text-center">
|
|
<%- if controller_name != "sessions" %>
|
|
<%= link_to t("devise_views.shared.links.login"), new_session_path(resource_name) %><br>
|
|
<% end -%>
|
|
|
|
<%- if devise_mapping.confirmable? && controller_name != "confirmations" %>
|
|
<%= link_to t("devise_views.shared.links.new_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_views.shared.links.new_unlock"), new_unlock_path(resource_name) %><br>
|
|
<% end -%>
|
|
|
|
</div>
|