Files
edx-platform/lms/templates/extauth_failure.html
Adeel Khan 30d8dfb5dd Fix edx-platform templates for xss.
This is part 2 of a multiple PR to escape
edx-platform templates to prevent xss attack.

PROD-465
2019-07-10 13:31:02 +05:00

15 lines
385 B
HTML

<%page expression_filter="h" />
<%! from django.utils.translation import ugettext as _ %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="${LANGUAGE_CODE}">
<head>
<title>${_("External Authentication failed")}</title>
</head>
<body>
<h1>${_("External Authentication failed")}</h1>
<p>${message}</p>
</body>
</html>