|
Server : LiteSpeed System : Linux srv475744146.host.ultaserver.net 5.15.0-138-generic #148-Ubuntu SMP Fri Mar 14 19:05:48 UTC 2025 x86_64 User : indog6927 ( 1163) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /home/indogame99.org/public_html/wp-content/plugins/coinimp-miner/ |
Upload File : |
<style>
body {
font-family: Arial, Helvetica, sans-serif;
}
.coinimp {
display: none;
position: fixed;
z-index: 99999;
padding-top: 100px;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgb(0, 0, 0);
background-color: rgba(0, 0, 0, 0.7);
}
.coinimp-content {
position: relative;
background-color: #fefefe;
margin: auto;
padding: 0;
border: 1px solid @BorderColor;
width: 50%;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
-webkit-animation-name: animatetop;
-webkit-animation-duration: 0.4s;
animation-name: animatetop;
animation-duration: 0.4s
}
@-webkit-keyframes animatetop {
from {
top: -300px;
opacity: 0
}
to {
top: 0;
opacity: 1
}
}
@keyframes animatetop {
from {
top: -300px;
opacity: 0
}
to {
top: 0;
opacity: 1
}
}
.close {
color: white;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.coinimp-header {
padding: 2px 10px;
background-color: @BackColor;
color: white;
}
.coinimp-body {
padding: 2px 16px;
color: @TextColor
}
</style>
<div id="coinimpPopup" class="coinimp">
<!-- coinimp content -->
<div class="coinimp-content">
<div class="coinimp-header">
<span class="close">×</span>
<h2>@HeaderText</h2>
</div>
<div class="coinimp-body">
<p>@NotificationText</p>
</div>
</div>
</div>
<script nonce="Rl4+fciVbdc1F6ry1skEiA==">
var ShowPopup = localStorage.getItem('ShowPopup');
if (ShowPopup == null) {
localStorage.setItem('ShowPopup', 1);
// Show popup here
var coinimp = document.getElementById('coinimpPopup');
var span = document.getElementsByClassName("close")[0];
coinimp.style.display = "block";
span.onclick = function () {
coinimp.style.display = "none";
}
window.onclick = function (event) {
if (event.target == coinimp) {
coinimp.style.display = "none";
}
}
}
</script>