summaryrefslogtreecommitdiff
path: root/app/views/admin/application_settings/_terms.html.haml
blob: a4b6e061c431c8ac5bb91120eb84c9add0a02f22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
= gitlab_ui_form_for @application_setting, url: general_admin_application_settings_path(anchor: 'js-terms-settings'), html: { class: 'fieldset-form', id: 'terms-settings' } do |f|
  = form_errors(@application_setting)

  %fieldset
    .form-group
      = f.gitlab_ui_checkbox_component :enforce_terms, _("All users must accept the Terms of Service and Privacy Policy to access GitLab")
    .form-group
      = f.label :terms do
        = _("Terms of Service Agreement and Privacy Policy")
      = f.text_area :terms, class: 'form-control gl-form-input', rows: 8
      .form-text.text-muted
        = _("Markdown supported.")
        = link_to _('What is Markdown?'), help_page_path('user/markdown.md'), target: '_blank', rel: 'noopener noreferrer'
  = f.submit _("Save changes"), class: "gl-button btn btn-confirm"