gitlab-org--gitlab-foss/app/views/shared/_confirm_modal.html.haml

24 lines
766 B
Plaintext
Raw Normal View History

#modal-confirm-danger.modal{tabindex: -1}
.modal-dialog
.modal-content
.modal-header
%a.close{href: "#", "data-dismiss" => "modal"} ×
2015-12-02 13:27:29 +00:00
%h3.page-title
Confirmation required
.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}
2015-10-19 18:04:05 +00:00
to proceed or close this modal to cancel.
.form-group
= text_field_tag 'confirm_name_input', '', class: 'form-control js-confirm-danger-input'
2015-12-02 13:34:20 +00:00
.form-actions
= submit_tag 'Confirm', class: "btn btn-danger js-confirm-danger-submit"