Newer
Older
jetty / src / main / webapp / index.jsp
Mark George on 29 Oct 2021 527 bytes Various improvements
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<% String ctx = request.getContextPath(); %>

<!DOCTYPE html>
<html>

	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
		<link rel="stylesheet" type="text/css" href="css/style.css"/>           
		<title>Awesome Web Site</title>
	</head>

	<body>

		<main>

			<%@include file="/WEB-INF/jspf/menu.jspf" %>

			<h1>Welcome to our awesome web site!</h1>

			<p>Please sign in to continue.</p>

		</main>
	</body>
</html>