summaryrefslogtreecommitdiff
path: root/app/views/shared/_confirm_modal.html.haml
blob: 7c326d36d999fad1b45ae3671c2fa640c04166f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#modal-confirm-danger.modal{ tabindex: -1 }
  .modal-dialog
    .modal-content
      .modal-header
        %h3.page-title
          Confirmation required
        %a.close{ href: "#", "data-dismiss" => "modal" } ×

      .modal-body
        %p.text-danger.js-confirm-text

        %p
          This action can lead to data loss.
          To prevent accidental actions we ask you to confirm your intention.
          %br
          Please type
          %code.js-confirm-danger-match= phrase
          to proceed or close this modal to cancel.

        .form-group
          = text_field_tag 'confirm_name_input', '', class: 'form-control js-confirm-danger-input'
        .form-actions
          = submit_tag 'Confirm', class: "btn btn-danger js-confirm-danger-submit"