From ce2e630304bf337c4bc43c0106936de1a0230a19 Mon Sep 17 00:00:00 2001
From: Justin Richer <jricher@mitre.org>
Date: Mon, 15 Apr 2013 12:47:35 -0400
Subject: [PATCH] fixed login page display (thanks to Jett), addresses #289

---
 openid-connect-server/src/main/webapp/WEB-INF/views/login.jsp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/openid-connect-server/src/main/webapp/WEB-INF/views/login.jsp b/openid-connect-server/src/main/webapp/WEB-INF/views/login.jsp
index f7bbebe81..cb4c19254 100644
--- a/openid-connect-server/src/main/webapp/WEB-INF/views/login.jsp
+++ b/openid-connect-server/src/main/webapp/WEB-INF/views/login.jsp
@@ -20,8 +20,8 @@ $(document).ready(function() {
 <div class="alert alert-error">The system was unable to log you in. Please try again.</div>
 </c:if>
 
-<form action="<%=request.getContextPath()%>/j_spring_security_check" method="POST" class="well span3 offset1">
- <fieldset>
+<form action="<%=request.getContextPath()%>/j_spring_security_check" method="POST">
+ <fieldset class="well span3 offset1">
     <div class="input-prepend"><span class="add-on"><i class="icon-user"></i></span><input type="text" name="j_username" id="j_username" value="" spellcheck="false" autocomplete="off" autocapitalize="off" autocorrect="off" placeholder="Username"></div>
     <div class="input-prepend"><span class="add-on"><i class="icon-lock"></i></span><input type="password" name="j_password" id="j_password" spellcheck="false" autocomplete="off" autocapitalize="off" autocorrect="off" placeholder="Password"></div>
     <div class="form-actions"><input type="submit" name="submit" value="Login" class="btn"></div>