36459-vm/registration_success.php
2026-05-27 14:29:58 +05:30

104 lines
2.4 KiB
PHP

<!DOCTYPE html>
<html>
<head>
<title>Registration Request Received | RS Learning Lab</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
background: radial-gradient(circle at top, #020617, #020617 30%, #0f172a 70%);
color: #e5e7eb;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.card {
background: #020617;
border-radius: 20px;
padding: 50px 40px;
width: 420px;
text-align: center;
box-shadow: 0 0 40px rgba(0,0,0,0.8);
}
.icon {
font-size: 48px;
margin-bottom: 20px;
}
h1 {
font-size: 24px;
margin-bottom: 15px;
color: #22c55e;
}
p {
font-size: 15px;
line-height: 1.6;
color: #cbd5f5;
margin-bottom: 20px;
}
.highlight {
color: #e5e7eb;
font-weight: bold;
}
.footer-line {
font-size: 13px;
color: #9ca3af;
margin-top: 25px;
font-style: italic;
}
.home-link {
display: inline-block;
margin-top: 30px;
padding: 10px 22px;
background: linear-gradient(135deg, #2563eb, #22c55e);
color: #020617;
text-decoration: none;
border-radius: 999px;
font-size: 14px;
font-weight: bold;
transition: transform 0.2s ease;
}
.home-link:hover {
transform: translateY(-2px);
}
</style>
</head>
<body>
<div class="card">
<div class="icon">🎉</div>
<h1>Registration Request Received</h1>
<p>
Thank you for registering with <span class="highlight">RS Learning Lab</span>.
</p>
<p>
Our team will <span class="highlight">personally contact you</span> to understand
your learning needs and set up a
<span class="highlight">dedicated learning space</span> for your institution.
</p>
<p>
You will receive further details shortly.
</p>
<div class="footer-line">
Learning begins with understanding.
</div>
<a href="index.php" class="home-link"> Back to Home</a>
</div>
</body>
</html>