aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/core/confirm/confirm.component.html
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/core/confirm/confirm.component.html')
-rw-r--r--client/src/app/core/confirm/confirm.component.html25
1 files changed, 0 insertions, 25 deletions
diff --git a/client/src/app/core/confirm/confirm.component.html b/client/src/app/core/confirm/confirm.component.html
deleted file mode 100644
index 43f0c6190..000000000
--- a/client/src/app/core/confirm/confirm.component.html
+++ /dev/null
@@ -1,25 +0,0 @@
1<ng-template #confirmModal let-close="close" let-dismiss="dismiss">
2
3 <div class="modal-header">
4 <h4 class="modal-title">{{ title }}</h4>
5 <span class="close" aria-label="Close" role="button" (click)="dismiss()"></span>
6 </div>
7
8 <div class="modal-body" >
9 <div [innerHtml]="message"></div>
10
11 <div *ngIf="inputLabel && expectedInputValue" class="form-group">
12 <label for="confirmInput">{{ inputLabel }}</label>
13 <input type="text" id="confirmInput" name="confirmInput" [(ngModel)]="inputValue" />
14 </div>
15 </div>
16
17 <div class="modal-footer inputs">
18 <span i18n class="action-button action-button-cancel" (click)="dismiss()" role="button">Cancel</span>
19
20 <input
21 type="submit" [value]="confirmButtonText" class="action-button-submit" [disabled]="isConfirmationDisabled()"
22 (click)="close()"
23 >
24 </div>
25</ng-template>