summaryrefslogtreecommitdiffstats
path: root/WebContent/templates/loggedin.xhtml
diff options
context:
space:
mode:
authorStefan Suhren <suhren.stefan@fh-swf.de>2015-11-22 15:07:27 +0100
committerStefan Suhren <suhren.stefan@fh-swf.de>2015-11-23 15:57:23 +0100
commitdf8c8d8eaa3fd74b2f6a76341611555ee6d8834d (patch)
tree40e93e3b3674f32d4870486eb9f5870d9fe45b2b /WebContent/templates/loggedin.xhtml
downloadJCatalog-df8c8d8eaa3fd74b2f6a76341611555ee6d8834d.tar.gz
JCatalog-df8c8d8eaa3fd74b2f6a76341611555ee6d8834d.zip
Add initial files
Diffstat (limited to 'WebContent/templates/loggedin.xhtml')
-rw-r--r--WebContent/templates/loggedin.xhtml60
1 files changed, 60 insertions, 0 deletions
diff --git a/WebContent/templates/loggedin.xhtml b/WebContent/templates/loggedin.xhtml
new file mode 100644
index 0000000..3ac57ca
--- /dev/null
+++ b/WebContent/templates/loggedin.xhtml
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="iso-8859-1" standalone="yes" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core">
+
+ <head>
+ <title><ui:insert name="pageTitle">Page Title</ui:insert></title>
+ <link rel="stylesheet" type="text/css" href="../stylesheets/twocolumn.css" />
+ <link rel="stylesheet" type="text/css" href="../stylesheets/navigation.css" />
+ <link rel="stylesheet" type="text/css" href="../stylesheets/form.css" />
+ <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
+ </head>
+
+ <body>
+
+ <div id="container">
+
+ <div id="top">
+ <ui:insert name="pageHeader">Page Header</ui:insert>
+ </div>
+
+ <div id="leftnav">
+ <ui:insert name="leftnav">
+ <h:form id="navcontainer">
+ <ul>
+ <li>
+ <h:commandLink action="contact">
+ <h:outputText id="contact" value="Cont@ct" />
+ </h:commandLink>
+ </li>
+ <li>
+ <h:commandLink action="categories">
+ <h:outputText id="catalog" value="Catalog" />
+ </h:commandLink>
+ </li>
+ <li>
+ <h:commandLink action="#{UserManager.logout}" id="logoutLink">
+ <h:outputText id="logout" value="Logout" />
+ </h:commandLink>
+ </li>
+ </ul>
+ </h:form>
+ </ui:insert>
+ </div>
+
+ <div id="content">
+ <ui:insert name="body">Page Body</ui:insert>
+ </div>
+
+ <div id="footer">
+ <ui:insert name="footer">Page Footer</ui:insert>
+ </div>
+
+ </div> <!-- id="container" -->
+
+ </body>
+
+</html>