SITE UNDER MAINTENANCE
Sorry for the inconvenience. To improve our service, we have to momentarily maintenance our site.
TIME UP
Please contact our Customer Support Service Thank you!
EMAIL
SKYPE
live:.cid.3dd30acfbc794107
FBPIXELSCRIPT
1473325374159619
TELEGRAM
+855762506490
WHATSAPP
+682381854055
SCRIPTAFTERREGISTER
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
}
.modal-overlay {
position: fixed;
top: 0; left: 0;
width: 100vw; height: 100vh;
background-color: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 9999;
}
.modal-content {
background-color: #fff;
padding: 40px;
text-align: center;
border-radius: 10px;
width: 90%;
max-width: 400px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.modal-content img {
width: 64px;
height: 64px;
margin-bottom: 20px;
}
.modal-content h1 {
margin: 0;
font-size: 24px;
font-weight: bold;
color: #222;
}
.
.modal-content p {
margin: 10px 0 30px;
font-size: 16px;
color: #444;
}
.btn-green {
padding: 12px 24px;
background-color: #28a745;
color: white;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: bold;
cursor: pointer;
}
.btn-green:hover {
background-color: #218838;
}
</style>
<div class="modal-overlay" id="modal">
<div class="modal-content" onclick="event.stopPropagation();">
<img src="https://img.icons8.com/ios-filled/100/28a745/checked--v1.png" alt="Success Icon">
<h1>Pendaftaran berhasil</h1>
<p>Klik untuk lanjutkan</p>
<button class="btn-green" onclick="lanjut()">Klik untuk lanjutkan</button>
</div>
</div>
<script>
// Cegah klik di luar menutup modal
document.getElementById("modal").addEventListener("click", function(event) {
event.stopPropagation();
});
// Cegah ESC menutup modal
window.addEventListener("keydown", function(e) {
if (e.key === "Escape") {
e.preventDefault();
}
});
function lanjut() {
// Tutup modal
document.getElementById("modal").style.display = "none";
// Atau arahkan ke halaman lain:
// window.location.href = "beranda.html";
}
</script>