summaryrefslogtreecommitdiff
path: root/app/views/projects/deploy_tokens/_revoke_modal.html.haml
blob: a859aac015dee5f17f3fd2c899bc67deeaf66c42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.modal{ id: "revoke-modal-#{token.id}" }
  .modal-dialog
    .modal-content
      .modal-header
        %h4.modal-title.pull-left
          Revoke
          %b #{token.name}?
        %button.close.pull-right{ "aria-label" => "Close", data: { dismiss: "modal"} }
          %span{ "aria-hidden" => "true" } ×
      .modal-body
        %p
          Are you sure you want to revoke this Deploy Token? This action cannot be undone
      .modal-footer
        %a{ href: '#', data: { dismiss: 'modal' }, class: 'btn btn-default' } Cancel
        = link_to "Revoke #{token.name}", revoke_project_deploy_token_path(project, token), method: :put, class: 'btn btn-danger'