Files
EasySoft-ZenTaoPMS/module/risk/view/activate.html.php
2020-08-18 17:44:02 +08:00

31 lines
1.2 KiB
PHP

<?php include "../../common/view/header.html.php";?>
<?php include '../../common/view/kindeditor.html.php';?>
<div id='mainContent' class='main-content'>
<div class='main-header'>
<h2>
<span class='prefix label-id'><strong><?php echo $risk->id;?></strong></span>
<?php echo "<span title='$risk->name'>" . $risk->name . '</span>';?>
</h2>
</div>
<form class='load-indicator main-form' method='post' target='hiddenwin'>
<table class='table table-form'>
<tbody>
<tr>
<th class='w-100px'><?php echo $lang->risk->activateBy;?></th>
<td><?php echo html::select('activateBy', $users, $this->app->user->account, "class='form-control chosen'");?></td>
<td></td>
</tr>
<tr>
<th class='w-100px'><?php echo $lang->risk->activateDate;?></th>
<td><?php echo html::input('activateDate', helper::today(), "class='form-control form-date'");?></td>
</tr>
<tr>
<td class='text-center form-actions' colspan='3'><?php echo html::submitButton(); ?></td>
</tr>
</tbody>
</table>
</form>
</div>
<?php include "../../common/view/footer.html.php";?>