extauth_failure.html 353 Bytes
Newer Older
1 2
<%! from django.utils.translation import ugettext as _ %>

ichuang committed
3 4
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
  "http://www.w3.org/TR/html4/strict.dtd">
5
<html lang="${LANGUAGE_CODE}">
ichuang committed
6
<head>
7
    <title>${_("External Authentication failed")}</title>
ichuang committed
8 9
</head>
<body>
10
    <h1>${_("External Authentication failed")}</h1>
ichuang committed
11 12 13
    <p>${message}</p>
</body>
</html>