23 lines
795 B
PHP
Executable File
23 lines
795 B
PHP
Executable File
<?php
|
|
/**
|
|
* The html template file of deny method of user module of RanZhi.
|
|
*
|
|
* @copyright Copyright 2009-2018 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package RanZhi
|
|
* @version $Id: deny.html.php 8260 2014-04-14 03:17:19Z guanxiying $
|
|
*/
|
|
include $app->getModuleRoot() . 'common/view/header.lite.html.php';
|
|
js::set('locate', $locate);
|
|
?>
|
|
<div class='page-container' style='margin:50px auto;'>
|
|
<div class='alert alert-danger'>
|
|
<strong><?php echo $message;?></strong>
|
|
<p><?php printf($lang->notice->jumping, $locate);?></p>
|
|
</div>
|
|
</div>
|
|
<?php js::execute($pageJS);?>
|
|
</body>
|
|
</html>
|