Sha256: 73fa90954adba527b167477fab14de17aaa0f9e532182befcb3ba60e920f32b5
Contents?: true
Size: 1.21 KB
Versions: 58
Compression:
Stored size: 1.21 KB
Contents
<%- if controller_name != "sessions" && resource_class != Decidim::UserGroup %> <p class="text-center"> <%= link_to t("devise.shared.links.sign_in"), new_session_path(resource_name) %> </p> <% end -%> <%- if current_organization.sign_up_enabled? && devise_mapping.registerable? && controller_name != "registrations" %> <p class="text-center"> <%= link_to t("devise.shared.links.sign_up"), new_registration_path(resource_name) %> </p> <% end -%> <%- if devise_mapping.recoverable? && controller_name != "passwords" %> <p class="text-center"> <%= link_to t("devise.shared.links.forgot_your_password"), new_password_path(resource_name) %> </p> <% end -%> <%- if current_organization.sign_up_enabled? && devise_mapping.confirmable? && controller_name != "confirmations" %> <p class="text-center"> <%= link_to t("devise.shared.links.didn_t_receive_confirmation_instructions"), new_confirmation_path(resource_name) %> </p> <% end -%> <%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != "unlocks" %> <p class="text-center"> <%= link_to t("devise.shared.links.didn_t_receive_unlock_instructions"), new_unlock_path(resource_name) %> </p> <% end -%>
Version data entries
58 entries across 58 versions & 1 rubygems