From a915ac1ad94605016b22709395542cc4c488349f Mon Sep 17 00:00:00 2001
From: lishengzhao <shengzhao@honyee.cc>
Date: Tue, 19 May 2015 16:15:09 +0800
Subject: [PATCH] Upgrade oauth_error details

---
 src/main/webapp/WEB-INF/jsp/oauth_error.jsp | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/main/webapp/WEB-INF/jsp/oauth_error.jsp b/src/main/webapp/WEB-INF/jsp/oauth_error.jsp
index 85b9000..bb1838a 100644
--- a/src/main/webapp/WEB-INF/jsp/oauth_error.jsp
+++ b/src/main/webapp/WEB-INF/jsp/oauth_error.jsp
@@ -4,6 +4,7 @@
 --%>
 
 <%@ page contentType="text/html;charset=UTF-8" language="java" %>
+<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
 <!DOCTYPE HTML>
 <html>
 <head>
@@ -12,8 +13,13 @@
 <body>
 <a href="${contextPath}/">Home</a>
 
-<p>
+<h3>
     Illegal action.
-</p>
+</h3>
+
+<div class="alert alert-danger">
+    <c:out value="${error.summary}"/>
+</div>
+
 </body>
 </html>
\ No newline at end of file