summaryrefslogtreecommitdiff
path: root/app/views/projects/pages/_https_only.html.haml
blob: ce3ef29c32e11b68d977191e6f2b42b8f4a94805 (plain)
1
2
3
4
5
6
7
8
9
10
= form_for @project, url: namespace_project_pages_path(@project.namespace.becomes(Namespace), @project), html: { class: 'inline', title: pages_https_only_title } do |f|
  .form-group
    .form-check
      = f.check_box :pages_https_only, class: 'form-check-input', disabled: pages_https_only_disabled?
      = f.label :pages_https_only, class: pages_https_only_label_class do
        %strong Force domains with SSL certificates to use HTTPS

  - unless pages_https_only_disabled?
    .prepend-top-10
    = f.submit 'Save', class: 'btn btn-success'