diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2018-10-30 12:43:48 +0100 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2018-10-30 12:43:48 +0100 |
commit | ee157cd4417064e88414edd3c53912395164c74b (patch) | |
tree | e97261e6436a18f1bd0c96ac5275cf8ec315f49c /basicConfig/templates/error_message.html | |
parent | 051ba1644821e825a5b22055d0f32231f4ba6fa1 (diff) | |
download | National_eIDAS_Gateway-ee157cd4417064e88414edd3c53912395164c74b.tar.gz National_eIDAS_Gateway-ee157cd4417064e88414edd3c53912395164c74b.tar.bz2 National_eIDAS_Gateway-ee157cd4417064e88414edd3c53912395164c74b.zip |
add default configuration files1.0.0
Diffstat (limited to 'basicConfig/templates/error_message.html')
-rw-r--r-- | basicConfig/templates/error_message.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/basicConfig/templates/error_message.html b/basicConfig/templates/error_message.html new file mode 100644 index 00000000..fc9b75a1 --- /dev/null +++ b/basicConfig/templates/error_message.html @@ -0,0 +1,37 @@ +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> +<head> + <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> + <link rel="stylesheet" href="$contextPath/css/css_error.css" /> + + <title>An error arise ... </title> +</head> + +<body> + <div id="page"> + <div id="page1" class="case selected-case" role="main"> + <h2 class="OA_header" role="heading">Authentication error arise</h2> + <!--div id="main"--> + <!--div id="leftcontent" class="hell" role="application"--> + + + + <div class="hell" role="application" > + <p>The authentication stops on account of a process error:</p> + <br/> + <p><b>Error Code:</b> $errorCode</p> + <p><b>Error Message:</b >$errorMsg</p> + </div> + + + #if($stacktrace) + <div> + <p><b>Stacktrace:</b> $stacktrace</p> + </div> + #end + + <!--/div---> + <!--/div--> + </div> + </div> +</body> +</html>
\ No newline at end of file |