35 lines
1.7 KiB
Plaintext
35 lines
1.7 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
|
|
pageEncoding="ISO-8859-1"%>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="ISO-8859-1" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link href="<c:url value='/css/bootstrap-5.3.8.min.css' />" rel="stylesheet" />
|
|
<link href="<c:url value='/css/matrix-v2.css' />" rel="stylesheet" />
|
|
<link href="<c:url value='/css/matrix-shell-v2.css' />" rel="stylesheet" />
|
|
<script src="<c:url value='/js/bootstrap-5.3.8.bundle.min.js' />" defer></script>
|
|
<script src="<c:url value='/js/matrix-shell-v2.js' />" defer></script>
|
|
<title>Cygnus 1.0</title>
|
|
<link href="/matrix/css/matrix-frame-dialog.css?v=6" rel="stylesheet" type="text/css" />
|
|
<script src="/matrix/js/matrix-frame-dialog.js?v=2" defer></script>
|
|
<script src="/matrix/js/matrix-accessibility-v1.js?v=1" defer></script>
|
|
<link href="/matrix/css/matrix-theme-v2.css?v=4" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
<body class="matrix-v2 matrix-shell">
|
|
<input type="hidden" value="${Sessvals.getUserGroupID()}" id="usgid" />
|
|
<input type="hidden" value="${Sessvals.getUserID()}" id="usid" />
|
|
|
|
<%@ include file="/WEB-INF/app/fragments/app-shell-header.jspf" %>
|
|
<%-- Shared shell owns ${Sessvals.menuHtml}. --%>
|
|
|
|
<main class="matrix-shell__content container-fluid" id="mainContent">
|
|
<section class="matrix-shell__welcome" aria-labelledby="welcomeTitle">
|
|
<h1 id="welcomeTitle">Welcome, <c:out value="${Sessvals.getUserDisplayName()}" /></h1>
|
|
<p>Select an option from the menu to continue.</p>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html>
|