Files
luos/workflow/engine/skins/iphone.html
2010-12-02 23:34:41 +00:00

103 lines
2.7 KiB
HTML
Executable File

<html>
<head>
<title>{$username}</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="device-width=320; initial-scale=1.0; maximum-scale=5.0; user-scalable=1;" />
<link rel="shortcut icon" href="/images/favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" type="text/css" href="/skins/iphone/style.css"/>
{$header}
<script type="text/javascript">{literal}
var openInfoPanel = function()
{
var oInfoPanel = new leimnud.module.panel();
oInfoPanel.options = {
size :{w:500,h:424},
position:{x:0,y:0,center:true},
title :'System Information',
theme :'processmaker',
control :{
close :true,
drag :false
},
fx:{
modal:true
}
};
oInfoPanel.setStyle = {modal: {
backgroundColor: 'white'
}};
oInfoPanel.make();
var oRPC = new leimnud.module.rpc.xmlhttp({
url : '../login/dbInfo',
async : false,
method: 'POST',
args : ''
});
oRPC.make();
oInfoPanel.addContent(oRPC.xmlhttp.responseText);
};
{/literal}</script>
</head>
<body>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<table width="100%" cellspacing="0" cellpadding="0" border="0" >
<tr>
<td width="100%" align="left" class="mainMenu" id="pm_menu">
<table width="70%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td class="mainMenu">&nbsp;<td>
{include file= "$tpl_menu"}
</tr>
</table>
</td>
</tr>
<tr>
{php}
global $G_TMP_MENU_ALIGN;
{/php}
<td width="100%" align="{php}($G_TMP_MENU_ALIGN==''?'center':$G_TMP_MENU_ALIGN){/php}" class="subMenu" id="pm_submenu">
<table width="50%" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>&nbsp;&nbsp;&nbsp;<td>
{include file= "$tpl_submenu"}
</tr>
</table>
</td>
</tr>
<tr>
<td id="pm_separator" class="pm_separator">
</td>
</tr>
<tr>
<td align="center">
{php}
global $G_TEMPLATE;
if ($G_TEMPLATE != '')
{
G::LoadTemplate($G_TEMPLATE);
}
{/php}
</td>
</tr>
</table>
</td>
</tr>
</table>
{php}if ((int)$_SESSION['USER_LOGGED'] != 0)
{
{/php}
<div align="right" class="iphone_link_login logout">
<a href="../users/myInfo">{$user}</a> |
<a href="{$linklogout}">{php}echo G::LoadTranslation('ID_LOGOUT');{/php}</a>
</div>
{php}
}
{/php}
</body>
</html>