| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"></meta> |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"></meta> |
| <meta name="viewport" content="width=device-width, initial-scale=1"></meta> |
| |
| <link rel="stylesheet" type="text/css" href="/ajax/libs/bootstrap/3.3.2/css/bootstrap.min.css"></link> |
| |
| <title>OSEE Error</title> |
| |
| <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> |
| <!--[if lt IE 9]> |
| <script src="/ajax/libs/html5shiv/3.7.2/html5shiv.min.js"></script> |
| <script src="/ajax/libs/respond/1.4.2/respond.min.js"></script> |
| <![endif]--> |
| <script type="text/javascript"> |
| function toggleDisplay(id) { |
| var element = document.getElementById(id).style |
| element.display = (element.display == 'none') ? 'block' : 'none'; |
| } |
| function toggleAllLocationElements() { |
| for (var i = 0; !(i >= document.all.locationElement.length); i++) { |
| document.all.locationElement[i].style.display == (document.all.locationElement[i].style.display == 'none') ? 'block' |
| : 'none'; |
| } |
| } |
| </script> |
| </head> |
| <body> |
| <div class="container"> |
| <h1>OSEE - OAuth2 Error</h1> |
| <p>Oops! Something went wrong...</p> |
| <div class="panel panel-default"> |
| <div class="container" class="panel-body"> |
| <div class="lead"> |
| <?errorDescription?> |
| </div> |
| <a onClick="toggleDisplay('errorDetails')">View Details »</a> |
| <div id="errorDetails" style="display: none"> |
| <dl class="dl-horizontal"> |
| <dt>Error Code:</dt> |
| <dd> |
| <?errorCode?> |
| </dd> |
| <dt>Error URI:</dt> |
| <dd> |
| <?errorUri?> |
| </dd> |
| <dt>Error State:</dt> |
| <dd> |
| <?errorState?> |
| </dd> |
| </dl> |
| </div> |
| </div> |
| </div> |
| </div> |
| </body> |
| </html> |