Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_terms.html.haml « application_settings « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 724246ab7e7faba109eaafb19c1381b911d99c4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
= form_for @application_setting, url: admin_application_settings_path, html: { class: 'form-horizontal fieldset-form' } do |f|
  = form_errors(@application_setting)

  %fieldset
    .form-group
      .col-sm-12
        .checkbox
          = f.label :enforce_terms do
            = f.check_box :enforce_terms
            = _("Require all users to accept Terms of Service when they access GitLab.")
          .help-block
            = _("When enabled, users cannot use GitLab until the terms have been accepted.")
    .form-group
      .col-sm-12
        = f.label :terms do
          = _("Terms of Service Agreement")
      .col-sm-12
        = f.text_area :terms, class: 'form-control', rows: 8
        .help-block
          = _("Markdown enabled")

  = f.submit _("Save changes"), class: "btn btn-success"