Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
shib-idp-conftree/webapp/index.jsp
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
31 lines (27 sloc)
1008 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ page pageEncoding="UTF-8" %> | |
<%@ taglib uri="http://www.springframework.org/tags" prefix="spring" %> | |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title><spring:message code="root.title" text="Shibboleth IdP" /></title> | |
<link rel="stylesheet" type="text/css" href="<%= request.getContextPath()%>/css/main.css"> | |
</head> | |
<body> | |
<div class="wrapper"> | |
<div class="container"> | |
<header> | |
<img src="<%= request.getContextPath() %><spring:message code="idp.logo" />" alt="<spring:message code="idp.logo.alt-text" text="logo" />"> | |
</header> | |
<div class="content"> | |
<h2><spring:message code="root.message" text="No services are available at this location." /></h2> | |
</div> | |
</div> | |
<footer> | |
<div class="container container-footer"> | |
<p class="footer-text"><spring:message code="root.footer" text="Insert your footer text here." /></p> | |
</div> | |
</footer> | |
</div> | |
</body> | |
</html> |