summaryrefslogtreecommitdiff
path: root/edit-webapp/index.jsp
diff options
context:
space:
mode:
authorJohan Lundberg <lundberg@nordu.net>2015-04-28 16:18:24 +0200
committerJohan Lundberg <lundberg@nordu.net>2015-04-28 16:18:24 +0200
commit9c382611b69cf48e4063395b6bd84c8733b9dc67 (patch)
treeb6974a423dc92117f7607ffa3574df413dc8d399 /edit-webapp/index.jsp
parenteadb0ebe5eb0d1e5fcff88e8322f5e3a44d6c93f (diff)
Docker image now installing and running.
Diffstat (limited to 'edit-webapp/index.jsp')
-rw-r--r--edit-webapp/index.jsp31
1 files changed, 31 insertions, 0 deletions
diff --git a/edit-webapp/index.jsp b/edit-webapp/index.jsp
new file mode 100644
index 0000000..2206fe3
--- /dev/null
+++ b/edit-webapp/index.jsp
@@ -0,0 +1,31 @@
+<%@ 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>
+ <a class="logo" href="../images/dummylogo.png"><img src="<%= request.getContextPath() %>/images/dummylogo.png" alt="Replace or remove this logo"></a>
+ </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><spring:message code="${root.footer}" text="Insert your footer text here." /></p>
+ </div>
+ </footer>
+ </div>
+
+ </body>
+</html>