- Scan ID:
- 18d751cc-bdaa-45bc-9393-b9791e2d8fe8Finished
- Submitted URL:
- https://kipsu.co/8x1vRedirected
- Report Finished:
Links · 1 found
The outgoing links identified from the page
Link | Text |
---|---|
http://surveysupport.medallia.com/ | surveysupport.medallia.com |
JavaScript Variables · 7 found
Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope
Name | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
constants | object |
messages | object |
bindLanguageClick | function |
switchLanguage | function |
Console log messages · 0 found
Messages logged to the web console
HTML
The raw HTML body of the page
<html><head><style>
* {
margin: 0;
padding: 0;
}
body {
background: #f4f7fc url(https://cdn.medallia.com/survey-engine/survey_unavailable_bg.jpg) top center no-repeat;
font: 13px/1.3 helvetica, arial, sans-serif;
text-align: center;
}
a {
color: #0a5fbd;
cursor: pointer;
text-decoration: none;
}
p {
color: #555;
font-size: 18px;
margin: 0 0 18px;
}
.wrapper {
width: 600px;
margin: 0 auto;
text-align: left;
padding: 105px 0;
}
.content {
padding: 0 0 0 170px;
}
.title {
font-size: 40px;
letter-spacing: -1px;
line-height: 0.9;
margin: 0 0 15px;
}
.secondaryText {
font-size: 13px;
}
.footer {
color: #000;
letter-spacing: -0.3px;
font-weight: bold;
}
</style>
</head><body><div class="wrapper">
<div class="content">
<h1 class="title" id="title">Oops! We couldn't find your survey.</h1>
<p class="primaryText" id="primaryText">Your link may be incorrect or out of date. Please check and try again.</p>
<p class="secondaryText" id="secondaryText">For additional help, go to <a href="http://surveysupport.medallia.com/">surveysupport.medallia.com</a></p>
<p class="footer" id="footer">The Medallia Team</p>
<div>
<a id="languageSwitchEn">English</a> |
<a id="languageSwitchFr">Français</a> |
<a id="languageSwitchEs">Español</a>
</div>
</div>
</div>
<script>
var constants = {
emailTemplate: '<a href="http://surveysupport.medallia.com/">surveysupport.medallia.com</a>',
defaultLanguage: "en",
};
var messages = {
en: {
title: "Oops! We couldn't find your survey.",
primaryText: "Your link may be incorrect or out of date. Please check and try again.",
secondaryText: "For additional help, go to " + constants.emailTemplate,
footer: "The Medallia Team",
},
es: {
title: "¡Ups! No pudimos encontrar su encuesta.",
primaryText: "Puede que el enlace sea incorrecto o estar desactualizado. Por favor revíselo y vuelva a intentarlo.",
secondaryText: "Para obtener ayuda adicional, diríjase a " + constants.emailTemplate,
footer: "El equipo de Medallia",
},
fr: {
title: "Oops! nous n'avons pas trouvé votre enquête.",
primaryText: "Votre lien peut être incorrect ou obsolète. S'il vous plaît, vérifiez et essayez à nouveau.",
secondaryText: "Pour obtenir de l'aide supplémentaire, rendez-vous sur " +
constants.emailTemplate,
footer: "L'équipe Medallia",
},
};
var bindLanguageClick = function bindLanguageClick(language, id){
var switchElement = document.getElementById(id);
switchElement.addEventListener("click", function(event){
switchLanguage(language);
});
};
var switchLanguage = function switchLanguage(newLanguage) {
document.getElementById("title").innerText = messages[newLanguage].title;
document.getElementById("primaryText").innerText =
messages[newLanguage].primaryText;
document.getElementById("secondaryText").innerHTML =
messages[newLanguage].secondaryText;
document.getElementById("footer").innerText = messages[newLanguage].footer;
};
bindLanguageClick("en", "languageSwitchEn")
bindLanguageClick("es", "languageSwitchEs")
bindLanguageClick("fr", "languageSwitchFr")
switchLanguage(constants.defaultLanguage);
</script>
<!-- This is an error page. -->
</body></html>