Approval page style upgraded to bootstrap 2 classes

pull/105/merge
Michael Jett 2012-05-09 14:20:44 -04:00
parent d983826da6
commit 9abb15a559
1 changed files with 4 additions and 4 deletions

View File

@ -28,16 +28,16 @@
<p> <p>
<form id="confirmationForm" name="confirmationForm" <form name="confirmationForm" style="display:inline"
action="<%=request.getContextPath()%>/oauth/authorize" method="post"> action="<%=request.getContextPath()%>/oauth/authorize" method="post">
<input name="user_oauth_approval" value="true" type="hidden"/> <input name="user_oauth_approval" value="true" type="hidden"/>
<input name="authorize" value="Authorize" type="submit" class="btn success large"/> <input name="authorize" value="Authorize" type="submit" class="btn btn-success btn-large"/>
</form> </form>
&nbsp; &nbsp;
<form id="denialForm" name="denialForm" action="<%=request.getContextPath()%>/oauth/authorize" <form name="denialForm" style="display:inline" action="<%=request.getContextPath()%>/oauth/authorize"
method="post"> method="post">
<input name="user_oauth_approval" value="false" type="hidden"/> <input name="user_oauth_approval" value="false" type="hidden"/>
<input name="deny" value="Deny" type="submit" class="btn secondary large"/> <input name="deny" value="Deny" type="submit" class="btn btn-secondary btn-large"/>
</form> </form>
</p> </p>
<a href="#" class="small">learn more</a> <a href="#" class="small">learn more</a>