1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 12:16:39 +02:00
Files
anope/modules/extra/webcpanel/templates/default/header.html
T
2013-01-31 21:24:48 -05:00

114 lines
2.8 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<link href="/static/style.css" media="screen" rel="stylesheet" type="text/css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<title>{TITLE}</title>
{IF EXISTS CMDR}
<script type="text/javascript">
var tSec=5; //Time in seconds to keep the overlay open
var t=(tSec*1000); //Convert the time to ms so we can use it
$(document).ready(function() \{
/*Modal*/
var id = "#dialog";
var mHeight;
var mWidth;
var oHeight = $(id).height();
var oWidth = $(id).height();
var top;
var left;
showModal();
$('.close').click(function (e) \{
e.preventDefault();
hideModal();
\});
$('#mask').click(function () \{
hideModal();
\});
function hideModal() \{
if ($('#mask').not(':hidden')) \{
$('.master').fadeTo('slow',1.0);
$('#mask, .window').fadeOut(200);
\}
\}
function showModal() \{
mHeight = $(document).height();
mWidth = $(window).width();
var alertMsg = '<br/>{CMDR}<br/>';
$('#mask').css(\{'width': mWidth, 'height': mHeight\});
$('#mask').fadeIn(200);
$('#mask').fadeTo('fast',0.75);
$('#dialogMsg').html(alertMsg);
top = mHeight/2-oHeight/2;
left = mWidth/2-oHeight/2;
$(id).css('top', top);
$(id).css('left', left);
$('.master').fadeTo('fast',0.3);
$(id).fadeIn(500);
setTimeout(hideModal, t);
\}
$(window).resize(function() \{
if ($('#mask').not(':hidden')) \{
mHeight = $(document).height();
mWidth = $(window).width();
/* Might as well only change the postion of box if the window is large enough */
if ((mHeight > oHeight) && (mWidth > oWidth)) \{
top = mHeight/2-oHeight/2;
left = mWidth/2-oHeight/2;
$('#mask').css(\{'width': mWidth, 'height': mHeight\});
$(id).css('top', top);
$(id).css('left', left);
\}
\}
\})
\});
</script>
{END IF}
</head>
<body>
<div id="boxes">
<div id="dialog" class="window">
<h2>Status Message:</h2>
<div id="dialogMsg"></div>
<div id="dialogClose"><a href="#" class="close">Dismiss</a></div>
</div>
<div id="mask"></div>
</div>
<div class="master">
<div class="header">
<ul id="button">
{FOR CATEGORY_URL,CATEGORY_NAME IN CATEGORY_URLS,CATEGORY_NAMES}
<li><a href="{CATEGORY_URL}">{CATEGORY_NAME}</a></li>
{END FOR}
</ul>
<div class="loggedinas">Logged in as {ACCOUNT} <a href="/logout">(Logout)</a></div>
</div>
<div class="sidebar">
<ul class="sidenav">
{FOR SUBCATEGORY_URL,SUBCATEGORY_GET,SUBCATEGORY_NAME IN SUBCATEGORY_URLS,SUBCATEGORY_GETS,SUBCATEGORY_NAMES}
<li><a href="{SUBCATEGORY_URL}{SUBCATEGORY_GET}">{SUBCATEGORY_NAME}</a></li>
{END FOR}
</ul>
</div>
<div class="content">