2011-10-08 17:36:38 -04:00
|
|
|
<%- if controller_name != 'sessions' %>
|
2017-12-05 04:01:46 -05:00
|
|
|
<%= link_to "Sign in", new_session_path(:user, redirect_to_referer: 'yes'), class: "btn" %><br />
|
2011-10-08 17:36:38 -04:00
|
|
|
<% end -%>
|
|
|
|
|
2017-11-23 08:16:14 -05:00
|
|
|
<%- if devise_mapping.registerable? && controller_name != 'registrations' && allow_signup? %>
|
2017-12-05 04:01:46 -05:00
|
|
|
<%= link_to "Sign up", new_registration_path(:user) %><br />
|
2011-10-08 17:36:38 -04:00
|
|
|
<% end -%>
|
|
|
|
|
|
|
|
<%- if devise_mapping.recoverable? && controller_name != 'passwords' %>
|
2017-12-05 04:01:46 -05:00
|
|
|
<%= link_to "Forgot your password?", new_password_path(:user), class: "btn" %><br />
|
2011-10-08 17:36:38 -04:00
|
|
|
<% end -%>
|
|
|
|
|
|
|
|
<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %>
|
2017-12-05 04:01:46 -05:00
|
|
|
<%= link_to "Didn't receive confirmation instructions?", new_confirmation_path(:user) %><br />
|
2011-10-08 17:36:38 -04:00
|
|
|
<% end -%>
|
|
|
|
|
|
|
|
<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %>
|
2017-12-05 04:01:46 -05:00
|
|
|
<%= link_to "Didn't receive unlock instructions?", new_unlock_path(:user) %><br />
|
2011-10-08 17:36:38 -04:00
|
|
|
<% end -%>
|