Thankyou - 14 June

By Ipshita, 7 May, 2025
Unique URL
/open-day-thank
Components
HTML Content

.success-details h1 {
font-size: 20px;
}
#content ul{
list-style: none;
padding: 0px;
}
#content p
{
font-size: 18px;
font-family: "Roboto", sans-serif;
padding-top: 15px;
line-height: normal;
}
.info p{
padding:0px;
line-height: normal;
}
#content b
{
font-size: 20px;
}

.success-details h1,
li {
text-align: left;
}
.success-section .success-details-event {
max-width: 800px;
margin: 0 auto;
display: flex;
min-height: 337px;
border: 2px solid #E0E0E0;
border-radius: 20px;
padding: 50px;
flex-direction: column;
justify-content: normal;
text-align: left;
align-items: left;
}

.success-section .success-details-event h1 {
margin-bottom: 19px;
}

.success-section .success-details-event a {
color: #0d6efd;

}

.success-section .success-details-event a:hover {
text-decoration: underline;
}

@media(max-width: 600px) {
.success-section .success-details-event {
padding: 30px;
}
}

document.addEventListener("DOMContentLoaded", function () {
let submitted_webform = JSON.parse(sessionStorage.getItem("submitted_webform"));
console.log("Stored Data:", submitted_webform);

let newContent = '';
switch (submitted_webform?.program) {
case "BBA":
case "BBA - LL.B.":
case "BA - LL.B.":
case "BA (Hons.)":
case "BA":
case "B.Com.":
case "B.Tech.":
case "B.Des.":
case "B.Pharm":
case "B.Sc.":
case "BCA":
case "B.Sc. (Hons)":
newContent = $('')
.append('Thank You for Registering for the UPES Open Day for '+submitted_webform?.program+ ' program at '+submitted_webform?.school+ '!')
.append('📅 Date: June 14📍 Location: UPES, Bidholi Campus, Dehradun🕥 Time: 12 PMWe’re excited to welcome you to our campus and give you a firsthand experience of life at UPES.');
break;
default:
newContent = $('')
.append('Thank You for Registering for the UPES Open Day for '+submitted_webform?.program+ ' program at '+submitted_webform?.school+ '!')
.append('📅 Date: June 14📍 Location: UPES, Bidholi Campus, Dehradun🕥 Time: 12 PMWe’re excited to welcome you to our campus and give you a firsthand experience of life at UPES.');
break;
}

$('#content').html(newContent);

//sessionStorage.removeItem("submitted_webform")
});

No Index
0