Yoshie Muranaka | fa56273 | 2019-07-17 11:23:15 -0500 | [diff] [blame] | 1 | <div class="uib-modal__content modal__local-users-remove"> |
| 2 | <div class="modal-header"> |
| 3 | <h2 class="modal-title" id="dialog_label"> |
| 4 | Remove user |
| 5 | </h2> |
| 6 | <button type="button" class="btn btn--close float-right" ng-click="$dismiss()" aria-label="Close"> |
| 7 | <icon file="icon-close.svg" aria-hidden="true"></icon> |
| 8 | </button> |
| 9 | </div> |
| 10 | <div class="modal-body"> |
Yoshie Muranaka | 49001e2 | 2019-09-16 10:33:16 -0700 | [diff] [blame^] | 11 | <p ng-if="modalCtrl.users.length > 1">Are you sure you want to remove {{modalCtrl.users.length}} users? This action cannot be undone.</p> |
| 12 | <p ng-if="modalCtrl.users.length === 1">Are you sure you want to remove user '{{modalCtrl.users[0].UserName}}'? This action cannot be undone.</p> |
Yoshie Muranaka | fa56273 | 2019-07-17 11:23:15 -0500 | [diff] [blame] | 13 | </div> |
| 14 | <div class="modal-footer"> |
| 15 | <button class="btn btn-secondary" ng-click="$dismiss()" type="button"> |
| 16 | Cancel |
| 17 | </button> |
| 18 | <button class="btn btn-primary" ng-click="$close()" type="button"> |
| 19 | Remove |
| 20 | </button> |
| 21 | </div> |
| 22 | </div> |