13 lines
473 B
Plaintext
13 lines
473 B
Plaintext
<%- if controller_name != 'sessions' %>
|
|
<%= link_to t(:signin), new_session_path(resource_name) %><br>
|
|
<% end -%>
|
|
|
|
<%- if devise_mapping.registerable? && controller_name != 'registrations' %>
|
|
<%= link_to t(:signup), new_registration_path(resource_name) %><br>
|
|
<% end -%>
|
|
|
|
<%- if devise_mapping.recoverable? && controller_name != 'passwords' && controller_name != 'registrations' %>
|
|
<%= link_to t(:password_forgot), new_password_path(resource_name) %><br>
|
|
<% end -%>
|
|
|