summaryrefslogtreecommitdiff
path: root/app/views/devise/shared/_terms_of_service_notice.html.haml
blob: 1c6dc1f2d5d866a54357969b71f835d88945e7b9 (plain)
1
2
3
4
5
6
7
8
9
- return unless Gitlab::CurrentSettings.current_application_settings.enforce_terms?

%p.gl-text-gray-500.gl-mt-5.gl-mb-0
  - if Gitlab.com?
    = html_escape(s_("SignUp|By clicking %{button_text}, I agree that I have read and accepted the GitLab %{link_start}Terms of Use and Privacy Policy%{link_end}")) % { button_text: button_text,
      link_start: "<a href='#{terms_path}' target='_blank' rel='noreferrer noopener'>".html_safe, link_end: '</a>'.html_safe }
  - else
    = html_escape(s_("SignUp|By clicking %{button_text}, I agree that I have read and accepted the %{link_start}Terms of Use and Privacy Policy%{link_end}")) % { button_text: button_text,
      link_start: "<a href='#{terms_path}' target='_blank' rel='noreferrer noopener'>".html_safe, link_end: '</a>'.html_safe }