57 lines
2.0 KiB
HTML
57 lines
2.0 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
|
|
<html>
|
|
<head>
|
|
<title>Main Authenticated Page</title>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
|
|
|
|
<script language="javascript" src="main.js" type="text/javascript"></script>
|
|
<script language="javascript" src="../common.js" type="text/javascript"></script>
|
|
|
|
<!-- Use one style sheet for IE and another for other browsers. -->
|
|
<script language="javascript">
|
|
<!--
|
|
var ua = navigator.userAgent.toLowerCase();
|
|
//Detect what browser this is and load the specific CSS for the browser.//
|
|
var isIE = ((ua.indexOf("msie") != -1) && (ua.indexOf("opera") == -1) && (ua.indexOf("webtv") == -1));
|
|
|
|
if(isIE) {
|
|
document.write('<'+'link rel="stylesheet" href="../main.css" type="text/css"/>');
|
|
document.write('<'+'link rel="stylesheet" href="../main-ie.css" type="text/css"/>');
|
|
}
|
|
else {
|
|
document.write('<'+'link rel="stylesheet" href="../main.css" type="text/css"/>');
|
|
}
|
|
//-->
|
|
</script>
|
|
</head>
|
|
<body id="bodyId" onLoad="init();">
|
|
<div align="center" style="padding-top:4px;">
|
|
<div id="page">
|
|
<!-- The welcome and links above the border. -->
|
|
<div id="pageTop">
|
|
<span id="linksLeft">
|
|
<a href="javascript:" class="topMenuLink" style="color: #400">SAMPLE LINK</a>
|
|
</span>
|
|
<span id="linksRight">
|
|
<a id="logLink" href="javascript:logout();" class="topMenuLink">Logout</a>
|
|
 |
|
|
<a href="javascript:" class="topMenuLink" style="color: #400">SAMPLE LINK</a>
|
|
</span>
|
|
</div>
|
|
<!-- Everything inside the border. -->
|
|
<div id="pageCenter">
|
|
<!-- TODO: Place content here. -->
|
|
</div>
|
|
<!-- Contains link text and navigation - outside the border. -->
|
|
<div id="pageBottom">
|
|
<!-- TODO: Place content here. -->
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="copyrightDiv">
|
|
<p style="font: 8pt serif bold; color: white; padding: 0px; margin: 18px 0px 0px 0px; color: #999;">
|
|
© DATE_HERE NAME_HERE. All rights reserved.
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html> |