139 lines
5.3 KiB
PHP
139 lines
5.3 KiB
PHP
<?php
|
|
/**
|
|
* The html template file of login method of user module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(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 ZenTaoPMS
|
|
* @version $Id: login.html.php 5084 2013-07-10 01:31:38Z wyd621@gmail.com $
|
|
*/
|
|
include '../../common/view/header.lite.html.php';
|
|
if(empty($config->notMd5Pwd))js::import($jsRoot . 'md5.js');
|
|
?>
|
|
<main id="main" class="fade no-padding">
|
|
<div class="container" id="login">
|
|
<div id="loginPanel">
|
|
<header>
|
|
<h2><?php printf($lang->welcome, $app->company->name);?></h2>
|
|
<div class="actions dropdown dropdown-hover" id='langs'>
|
|
<button type='button' class='btn' title='Change Language/更换语言/更換語言'><?php echo $config->langs[$this->app->getClientLang()]; ?> <span class="caret"></span></button>
|
|
<ul class="dropdown-menu pull-right">
|
|
<?php foreach($config->langs as $key => $value):?>
|
|
<li><a class="switch-lang" data-value="<?php echo $key; ?>"><?php echo $value; ?></a></li>
|
|
<?php endforeach;?>
|
|
</ul>
|
|
</div>
|
|
</header>
|
|
<div class="table-row">
|
|
<div class="col-4 text-center" id='logo-box'>
|
|
<img src="<?php echo $config->webRoot . 'theme/default/images/main/' . $this->lang->logoImg;?>" />
|
|
</div>
|
|
<div class="col-8">
|
|
<form method='post' target='hiddenwin'>
|
|
<table class='table table-form'>
|
|
<tbody>
|
|
<tr>
|
|
<th><?php echo $lang->user->account;?></th>
|
|
<td><input class='form-control' type='text' name='account' id='account' autofocus /></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->user->password;?></th>
|
|
<td><input class='form-control' type='password' name='password' /></td>
|
|
</tr>
|
|
<tr>
|
|
<th></th>
|
|
<td id="keeplogin"><?php echo html::checkBox('keepLogin', $lang->user->keepLogin, $keepLogin);?></td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td class="form-actions">
|
|
<?php
|
|
echo html::submitButton($lang->login, '', 'btn btn-primary');
|
|
if($app->company->guest) echo html::linkButton($lang->user->asGuest, $this->createLink($config->default->module));
|
|
echo html::hidden('referer', $referer);
|
|
echo html::hidden('verifyRand', $rand);
|
|
echo html::a(inlink('reset'), $lang->user->resetPassword);
|
|
?>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<?php if(isset($demoUsers)):?>
|
|
<footer>
|
|
<span><?php echo $lang->user->loginWithDemoUser;?></span>
|
|
<?php
|
|
$password = md5('123456');
|
|
$link = inlink('login');
|
|
$link .= strpos($link, '?') !== false ? '&' : '?';
|
|
foreach($demoUsers as $demoAccount => $demoUser)
|
|
{
|
|
if($demoUser->password != $password) continue;
|
|
echo html::a($link . "account={$demoAccount}&password=" . md5($password . $this->session->rand), $demoUser->realname, 'hiddenwin');
|
|
}
|
|
?>
|
|
</footer>
|
|
<?php endif;?>
|
|
</div>
|
|
<div id="info" class="table-row">
|
|
<div class="table-col text-middle text-center">
|
|
<div id="poweredby">
|
|
<?php if($config->checkVersion):?>
|
|
<iframe id='updater' class='hidden' frameborder='0' width='100%' height='45' scrolling='no' allowtransparency='true' src="<?php echo $this->createLink('misc', 'checkUpdate', "sn=$s");?>"></iframe>
|
|
<?php endif;?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<?php
|
|
if(strpos('/zentao/|/pro/|/biz/', $this->config->webRoot) !== false)
|
|
{
|
|
$databases = array('zentao' => 'zentao', 'zentaopro' => 'zentaopro', 'zentaobiz' => 'zentaobiz', 'zentaoep' => 'zentaoep');
|
|
if($this->config->webRoot == '/zentao/') unset($databases['zentao']);
|
|
if($this->config->webRoot == '/pro/') unset($databases['zentaopro']);
|
|
if($this->config->webRoot == '/biz/')
|
|
{
|
|
unset($databases['zentaobiz']);
|
|
unset($databases['zentaoep']);
|
|
}
|
|
|
|
$users = array();
|
|
foreach($databases as $database)
|
|
{
|
|
try
|
|
{
|
|
$webRoot = "/{$database}/";
|
|
if($database == 'zentao') $webRoot = '/zentao/';
|
|
if($database == 'zentaopro') $webRoot = '/pro/';
|
|
if($database == 'zentaobiz') $webRoot = '/biz/';
|
|
if($database == 'zentaoep') $webRoot = '/biz/';
|
|
|
|
$users[$webRoot] = $this->dbh->query("select * from {$database}.`zt_user` where account = 'admin' and password='" . md5('123456') . "'")->fetch();
|
|
}
|
|
catch(Exception $e){}
|
|
}
|
|
|
|
if($users)
|
|
{
|
|
$sysURL = common::getSysURL();
|
|
$links = array();
|
|
foreach($users as $webRoot => $user) $links[] = $sysURL . $webRoot;
|
|
|
|
$notice = sprintf($lang->user->notice4Safe, join('<br />', $links));
|
|
echo <<<EOD
|
|
<script>
|
|
\$(function()
|
|
{
|
|
bootbox.alert('$notice');
|
|
})
|
|
</script>
|
|
EOD;
|
|
}
|
|
}
|
|
?>
|
|
<?php include '../../common/view/footer.lite.html.php';?>
|