-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspinner_modal.php
More file actions
18 lines (18 loc) · 1020 Bytes
/
spinner_modal.php
File metadata and controls
18 lines (18 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div class="modal fade" id="spinnerModal" tabindex="-1" aria-labelledby="spinnerModalLabel" aria-hidden="true" data-bs-backdrop="static" data-bs-keyboard="false">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-body text-center">
<div class="spinner-border text-primary" role="status">
<span class="visually-hidden">Yükleniyor...</span>
</div>
<p class="mt-3" id="spinnerText">E-postalar gönderiliyor, lütfen bekleyin...</p>
<div id="successMessage" class="text-success" style="display: none;">
<i class="fas fa-check-circle"></i> Gönderme işlemi başarılı!
</div>
<div id="errorMessage" class="text-danger" style="display: none;">
<i class="fas fa-exclamation-circle"></i> Gönderme işlemi başarısız oldu!
</div>
</div>
</div>
</div>
</div>