Files
EasySoft-ZenTaoPMS/module/user/view/reset.html.php
2015-12-22 13:27:26 +08:00

52 lines
1.6 KiB
PHP

<?php
/**
* The reset view file 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 Yidong Wang <yidong@cnezsoft.com>
* @package user
* @version $Id$
* @link http://www.zentao.net
*/
?>
<?php include '../../common/view/header.lite.html.php';?>
<?php if($status == 'createFile'):?>
<div class='container mw-700px' style='margin-top:100px;'>
<div class='panel-body'>
<?php printf($lang->user->noticeResetFile, $this->session->resetFileName);?>
</div>
<p><?php echo html::a(inlink('reset'), $this->lang->refresh, '', "class='btn'")?></p>
</div>
<?php elseif($status == 'reset'):?>
<div class='container mw-500px' style='margin-top:50px;'>
<div class='panel'>
<div class='panel-heading'>
<strong><?php echo $lang->user->resetPassword?></strong>
</div>
<form method='post' target='hiddenwin'>
<table class='table table-form'>
<tr>
<th><?php echo $lang->user->account?></th>
<td><?php echo html::input('account', '', "class='form-control'")?></td>
</tr>
<tr>
<th><?php echo $lang->user->password?></th>
<td><?php echo html::password('password1', '', "class='form-control'")?></td>
</tr>
<tr>
<th><?php echo $lang->user->password2?></th>
<td><?php echo html::password('password2', '', "class='form-control'")?></td>
</tr>
<tr>
<th></th>
<td><?php echo html::submitButton()?></td>
</tr>
</table>
</form>
</div>
</div>
<?php endif;?>
<?php include '../../common/view/footer.lite.html.php';?>