2018-06-12 23:11:24 +02:00
|
|
|
<div class="modal fade">
|
2018-06-12 23:33:08 +02:00
|
|
|
<div class="modal-dialog modal-sm">
|
2018-06-12 23:11:24 +02:00
|
|
|
<form class="modal-content" #form (ngSubmit)="submit()" [appApiAction]="formPromise">
|
|
|
|
<div class="modal-header">
|
|
|
|
<h2 class="modal-title">
|
|
|
|
{{'deleteSelected' | i18n}}
|
|
|
|
</h2>
|
|
|
|
<button type="button" class="close" data-dismiss="modal" attr.aria-label="{{'close' | i18n}}">
|
|
|
|
<span aria-hidden="true">×</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
{{'deleteSelectedItemsDesc' | i18n: cipherIds.length}}
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
2018-06-27 15:45:26 +02:00
|
|
|
<button appBlurClick appAutoFocus type="submit" class="btn btn-danger btn-submit" [disabled]="form.loading">
|
2018-06-21 16:06:32 +02:00
|
|
|
<i class="fa fa-spinner fa-spin"></i>
|
|
|
|
<span>{{'delete' | i18n}}</span>
|
2018-06-12 23:11:24 +02:00
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-outline-secondary" data-dismiss="modal" title="{{'cancel' | i18n}}">{{'cancel' | i18n}}</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|