- Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathfooter.php
More file actions
47 lines (42 loc) · 1.58 KB
/
footer.php
File metadata and controls
47 lines (42 loc) · 1.58 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!-- Container-fluid closed -->
</div>
<!-- Content section closed -->
</section>
<!-- Content-wrapper closed -->
</div>
<footer class="main-footer">
<div class="float-right d-none d-sm-inline">
Admin Panel <strong><a target="_blank" href="https://iqbolshoh.uz/">Iqbolshoh.uz</a></strong>
</div>
<strong> ©<?php echo date('Y'); ?></strong> All rights reserved.
</footer>
<script>
function logout() {
Swal.fire({
title: 'Are you sure?',
text: "You will be logged out!",
icon: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, log me out!'
}).then((result) => {
if (result.isConfirmed) {
Swal.fire({
title: 'Logged out!',
text: 'You have been successfully logged out.',
icon: 'success',
showConfirmButton: false,
timer: 1500
}).then(() => {
window.location.href = '/logout/';
});
}
});
}
</script>
<!-- Wrapper closed -->
</div>
<!-- Body closed -->
</body>
</html>