- ID de l'analyse :
- 18d751cc-bdaa-45bc-9393-b9791e2d8fe8Terminée
- URL soumise :
- https://kipsu.co/8x1vRedirigé
- Fin du rapport :
Liens : 1 trouvé(s)
Liens sortants identifiés à partir de la page
Lien | texte |
---|---|
http://surveysupport.medallia.com/ | surveysupport.medallia.com |
Variables JavaScript : 7 trouvée(s)
Les variables JavaScript globales chargées dans l'objet fenêtre d'une page sont des variables déclarées en dehors des fonctions et accessibles depuis n'importe quel endroit du code au sein du champ d'application actuel
Nom | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
constants | object |
messages | object |
bindLanguageClick | function |
switchLanguage | function |
Messages de journal de console : 0 trouvé(s)
Messages consignés dans la console web
HTML
Le corps HTML de la page en données brutes
<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>