| Server IP : 199.79.63.27 / Your IP : 216.73.216.250 Web Server : Microsoft-IIS/10.0 System : Windows NT MD-PLESK-WEB5 10.0 build 20348 (Windows Server 2022) AMD64 User : IWPD_6698(lcitec7i) ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : D:/INETPUB/VHOSTS/lcit.edu.in/lcitps.edu.in/ |
Upload File : |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admission Popup</title>
<style>
#popup {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: white;
padding: 20px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}
#close {
cursor: pointer;
color: red;
}
</style>
</head>
<body>
<div id="popup">
<p> <p> <img src="assets/images/about/admissionpop.png" alt="Promod Jain sir" style="width:100%; float: left; padding:20px; border-radius: 40px;"></p>
<span id="close">Close</span>
</div>
<script>
window.onload = function() {
document.getElementById("popup").style.display = "block";
};
document.getElementById("close").onclick = function() {
document.getElementById("popup").style.display = "none";
window.location.href = "index.php"; // Redirect to index.php
};
</script>
</body>
</html>