debian-mirror-gitlab/app/views/devise/shared/_links.erb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
904 B
Text
Raw Normal View History

2014-09-02 18:07:02 +05:30
<%- if controller_name != 'sessions' %>
2021-06-08 01:23:25 +05:30
<%= link_to _("Sign in"), new_session_path(:user, redirect_to_referer: 'yes'), class: "btn" %><br />
2014-09-02 18:07:02 +05:30
<% end -%>
2018-03-17 18:26:18 +05:30
<%- if devise_mapping.registerable? && controller_name != 'registrations' && allow_signup? %>
2021-06-08 01:23:25 +05:30
<%= link_to _("Sign up"), new_registration_path(:user) %><br />
2014-09-02 18:07:02 +05:30
<% end -%>
<%- if devise_mapping.recoverable? && controller_name != 'passwords' %>
2021-06-08 01:23:25 +05:30
<%= link_to _("Forgot your password?"), new_password_path(:user), class: "btn" %><br />
2014-09-02 18:07:02 +05:30
<% end -%>
<%- if devise_mapping.confirmable? && controller_name != 'confirmations' %>
2021-06-08 01:23:25 +05:30
<%= link_to _("Didn't receive confirmation instructions?"), new_confirmation_path(:user) %><br />
2014-09-02 18:07:02 +05:30
<% end -%>
<%- if devise_mapping.lockable? && resource_class.unlock_strategy_enabled?(:email) && controller_name != 'unlocks' %>
2021-06-08 01:23:25 +05:30
<%= link_to _("Didn't receive unlock instructions?"), new_unlock_path(:user) %><br />
2014-09-02 18:07:02 +05:30
<% end -%>