-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRefreshIndexWaiter.html
25 lines (25 loc) · 1.25 KB
/
RefreshIndexWaiter.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<div class="modal fade" id="refreshIndexModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Refreshing index..</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div style="display: none;" id="refreshIndexError" class="alert alert-danger" role="alert">
<strong>Error!</strong> <span id="refreshIndexErrorValue"></span><br>You probably provided the wrong password!
</div>
<div id="refreshIndexWaiter">
<strong class="center">Decrypting... Please wait! </strong>
<i class="fas fa-sync fa-spin center"></i>
<p>This usually takes a few seconds!</p>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>