From d2ba28ea1a643c740b5fce7da01e567f6b01a599 Mon Sep 17 00:00:00 2001 From: Tim van Dijen <tvdijen@gmail.com> Date: Fri, 8 Dec 2017 16:39:08 +0100 Subject: [PATCH] saml: add Twig templates --- modules/saml/templates/proxy/invalid_session.twig | 12 ++++++++++++ .../templates/sp/wrong_authncontextclassref.twig | 7 +++++++ templates/error.twig | 5 ++--- 3 files changed, 21 insertions(+), 3 deletions(-) create mode 100644 modules/saml/templates/proxy/invalid_session.twig create mode 100644 modules/saml/templates/sp/wrong_authncontextclassref.twig diff --git a/modules/saml/templates/proxy/invalid_session.twig b/modules/saml/templates/proxy/invalid_session.twig new file mode 100644 index 000000000..c970efabf --- /dev/null +++ b/modules/saml/templates/proxy/invalid_session.twig @@ -0,0 +1,12 @@ +{% set pagetitle = 'SimpleSAMLphp'|trans %} +{% extends "base.twig" %} + +{% block content %} + <h2>{{ '{saml:proxy:invalid_idp}'|trans }}</h2> + <p>{{ '{saml:proxy:invalid_idp_description}'|trans({"%IDP%": idp_name, "%SP%": sp_name}, "app")|raw</p> + <form method="post" action="?"> + <input type="hidden" name="AuthState" value="{{ AuthState|escape('html') }}" /> + <input type="submit" name="continue" value="{{ '{general:yes_continue}'|trans }}" /> + <input type="submit" name="cancel" value="{{ '{general:no_cancel}'|trans }}" /> + </form> +{% endblock %} diff --git a/modules/saml/templates/sp/wrong_authncontextclassref.twig b/modules/saml/templates/sp/wrong_authncontextclassref.twig new file mode 100644 index 000000000..5a5012c87 --- /dev/null +++ b/modules/saml/templates/sp/wrong_authncontextclassref.twig @@ -0,0 +1,7 @@ +{% set pagetitle = 'SimpleSAMLphp'|trans %} +{% extends "base.twig" %} + +{% block content %} + <h2>{{ '{saml:wrong_authncontextclassref:header}'|trans|escape('html') }}</h2> + <p>{{ '{saml:wrong_authncontextclassref:description}'|trans|escape('html') }}</p> +{% endblock %} diff --git a/templates/error.twig b/templates/error.twig index 4aa773993..d312c2cb3 100644 --- a/templates/error.twig +++ b/templates/error.twig @@ -35,8 +35,7 @@ <h2>{{'{errors:debuginfo_header}' | trans}}</h2> <p>{{'{errors:debuginfo_text}' | trans}}</p> <div class="code-box code-box-content"> - <pre>{{ error.exceptionMsg }}<br> - {{ error.exceptionTrace }} + <pre>{{ error.exceptionMsg }}<br />{{ error.exceptionTrace }} </pre> </div> {%- endif %} @@ -62,4 +61,4 @@ <h2>{{ '{errors:howto_header}' | trans }}</h2> <p>{{ '{errors:howto_text}' | trans }}</p> -{% endblock %} \ No newline at end of file +{% endblock %} -- GitLab