Fixed formatting in tag files
parent
5beac9d50d
commit
a91f160e34
|
@ -1,7 +1,5 @@
|
||||||
<h2>About</h2>
|
<h2>About</h2>
|
||||||
<p>This OpenID Connect service is built from the MITREid Connect
|
<p>This OpenID Connect service is built from the MITREid Connect Open Source project started by The MITRE Corporation.</p>
|
||||||
Open Source project started by The MITRE Corporation.</p>
|
|
||||||
<p>
|
<p>
|
||||||
More information about the project can be found at <a href="http://github.com/mitreid-connect/">MITREid Connect on GitHub</a>.
|
More information about the project can be found at <a href="http://github.com/mitreid-connect/">MITREid Connect on GitHub</a>. There, you can submit bug reports, give feedback, or even contribute code patches for additional features you'd like to see.
|
||||||
There, you can submit bug reports, give feedback, or even contribute code patches for additional features you'd like to see.
|
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -15,13 +15,11 @@
|
||||||
<!-- Le javascript
|
<!-- Le javascript
|
||||||
================================================== -->
|
================================================== -->
|
||||||
<!-- Placed at the end of the document so the pages load faster -->
|
<!-- Placed at the end of the document so the pages load faster -->
|
||||||
<script type="text/javascript"
|
<script type="text/javascript" src="resources/bootstrap2/js/bootstrap.js"></script>
|
||||||
src="resources/bootstrap2/js/bootstrap.js"></script>
|
|
||||||
<script type="text/javascript" src="resources/js/lib/underscore.js"></script>
|
<script type="text/javascript" src="resources/js/lib/underscore.js"></script>
|
||||||
<script type="text/javascript" src="resources/js/lib/backbone.js"></script>
|
<script type="text/javascript" src="resources/js/lib/backbone.js"></script>
|
||||||
<script type="text/javascript" src="resources/js/lib/purl.js"></script>
|
<script type="text/javascript" src="resources/js/lib/purl.js"></script>
|
||||||
<script type="text/javascript"
|
<script type="text/javascript" src="resources/js/lib/bootstrapx-clickover.js"></script>
|
||||||
src="resources/js/lib/bootstrapx-clickover.js"></script>
|
|
||||||
<c:if test="${js != null && js != ''}">
|
<c:if test="${js != null && js != ''}">
|
||||||
<script type="text/javascript" src="resources/js/client.js"></script>
|
<script type="text/javascript" src="resources/js/client.js"></script>
|
||||||
<script type="text/javascript" src="resources/js/grant.js"></script>
|
<script type="text/javascript" src="resources/js/grant.js"></script>
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
<h2>About</h2>
|
<h2>About</h2>
|
||||||
|
|
||||||
<p>This OpenID Connect service is built from the MITREid Connect
|
<p>This OpenID Connect service is built from the MITREid Connect Open Source project started by The MITRE Corporation.</p>
|
||||||
Open Source project started by The MITRE Corporation.</p>
|
|
||||||
|
|
||||||
<p><a class="btn" href="http://github.com/mitreid-connect/">More »</a></p>
|
<p><a class="btn" href="http://github.com/mitreid-connect/">More »</a></p>
|
||||||
|
|
|
@ -1,8 +1,5 @@
|
||||||
<h1>Welcome!</h1>
|
<h1>Welcome!</h1>
|
||||||
|
|
||||||
<p>OpenID Connect is a next-generation protocol built on top of the
|
<p>OpenID Connect is a next-generation protocol built on top of the OAuth2 authorization framework. OpenID Connect lets you log into a remote site using your identity without exposing your credentials, like a username and password.</p>
|
||||||
OAuth2 authorization framework. OpenID Connect lets you log into a
|
|
||||||
remote site using your identity without exposing your credentials, like
|
|
||||||
a username and password.</p>
|
|
||||||
|
|
||||||
<p><a class="btn btn-primary btn-large" href="http://openid.net/connect/">Learn more »</a></p>
|
<p><a class="btn btn-primary btn-large" href="http://openid.net/connect/">Learn more »</a></p>
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
<%@ taglib prefix="security"
|
<%@ taglib prefix="security" uri="http://www.springframework.org/security/tags"%>
|
||||||
uri="http://www.springframework.org/security/tags"%>
|
|
||||||
<%@ taglib prefix="o" tagdir="/WEB-INF/tags"%>
|
<%@ taglib prefix="o" tagdir="/WEB-INF/tags"%>
|
||||||
|
|
||||||
<div class="span2 visible-desktop">
|
<div class="span2 visible-desktop">
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
<%@attribute name="pageName" required="false"%>
|
<%@attribute name="pageName" required="false"%>
|
||||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
||||||
<%@ taglib prefix="security"
|
<%@ taglib prefix="security" uri="http://www.springframework.org/security/tags"%>
|
||||||
uri="http://www.springframework.org/security/tags"%>
|
|
||||||
<%@ taglib prefix="o" tagdir="/WEB-INF/tags"%>
|
<%@ taglib prefix="o" tagdir="/WEB-INF/tags"%>
|
||||||
<c:choose>
|
<c:choose>
|
||||||
<c:when test="${ not empty userInfo.preferredUsername }">
|
<c:when test="${ not empty userInfo.preferredUsername }">
|
||||||
|
@ -17,10 +16,8 @@
|
||||||
</c:when>
|
</c:when>
|
||||||
<c:otherwise>
|
<c:otherwise>
|
||||||
<c:choose>
|
<c:choose>
|
||||||
<c:when
|
<c:when test="${ not empty userInfo.givenName || not empty userInfo.familyName }">
|
||||||
test="${ not empty userInfo.givenName || not empty userInfo.familyName }">
|
<c:set var="longName" value="${ userInfo.givenName } {$ userInfo.familyName }" />
|
||||||
<c:set var="longName"
|
|
||||||
value="${ userInfo.givenName } {$ userInfo.familyName }" />
|
|
||||||
</c:when>
|
</c:when>
|
||||||
<c:otherwise>
|
<c:otherwise>
|
||||||
<c:set var="longName" value="${ shortName }" />
|
<c:set var="longName" value="${ shortName }" />
|
||||||
|
@ -31,10 +28,10 @@
|
||||||
<div class="navbar navbar-fixed-top">
|
<div class="navbar navbar-fixed-top">
|
||||||
<div class="navbar-inner">
|
<div class="navbar-inner">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<button class="btn btn-navbar" data-toggle="collapse"
|
<button class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
|
||||||
data-target=".nav-collapse">
|
<span class="icon-bar"></span>
|
||||||
<span class="icon-bar"></span> <span class="icon-bar"></span> <span
|
<span class="icon-bar"></span>
|
||||||
class="icon-bar"></span>
|
<span class="icon-bar"></span>
|
||||||
</button>
|
</button>
|
||||||
<a class="brand" href="">${config.topbarTitle}</a>
|
<a class="brand" href="">${config.topbarTitle}</a>
|
||||||
<div class="nav-collapse collapse">
|
<div class="nav-collapse collapse">
|
||||||
|
|
Loading…
Reference in New Issue