-
Notifications
You must be signed in to change notification settings - Fork 0
/
offline.php
28 lines (25 loc) · 1.12 KB
/
offline.php
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
26
27
28
<!-- Header -->
<?php $page_title = "خطا"; include 'header.php'; ?>
<div class="info">
در اتصال به اینترنت و برقراری ارتباط با سرور خطایی رخ داده است، دقایقی بعد مجدد امتحان کنید و درصورتی که مشکل رقع نشد با اطلاعات تماس درج شده در صفحه درباره پروژه در ارتباط باشید.
</div>
<a id="retryButton" class="button" style="width: 100%;">امتحان مجدد</a>
<script>
// Refresh button
document.addEventListener('DOMContentLoaded', function() {
var retryButton = document.getElementById('retryButton');
var networkStatus = document.querySelector('.network');
retryButton.addEventListener('click', function() {
if (navigator.onLine) {
// Redirect to login page if online
window.location.href = 'login.php';
} else {
// Show message if offline
networkStatus.classList.add('showmsg');
}
});
});
</script>
<!-- Footer -->
</div>
<?php include 'footer.php'; ?>