39 lines
1.3 KiB
PHTML
39 lines
1.3 KiB
PHTML
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle('后台管理');
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->headLink()->appendStylesheet('/css/admin.css');
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
$this->breadcrumb('<a href="/admin/">后台首页</a>');
|
|
$this->breadcrumb('<a href="/admin/user">用户管理</a>');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
?>
|
|
<div id="leftPanel">
|
|
<?= $this->partial('user/left.phtml'); ?>
|
|
</div>
|
|
|
|
<?php if ($this->msg or $this->messages) :?>
|
|
<div id="message">
|
|
<?php if ($this->msg) : ?>
|
|
<p><?php echo $this->msg; ?></p>
|
|
<?php endif; if ($this->messages): foreach($this->messages as $msg): ?>
|
|
<p><?php echo $msg; ?></p>
|
|
<?php endforeach;endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<div id="rightPanel">
|
|
<form method="post">
|
|
<input type="hidden" name="id" value="<?php echo $this->infos['id']; ?>" />
|
|
|
|
<input type="hidden" name="submit" value="1" />
|
|
|
|
<table>
|
|
<tr><td width="80">姓名</td><td width="500"><?php echo $this->infos['realname']; ?></td></tr>
|
|
<tr><td width="80">单位</td><td width="500"><?php echo $this->infos['unit']; ?></td></tr>
|
|
<tr><td>专长</td><td><textarea name="speciality" class="emailtext"></textarea></td></tr>
|
|
</table>
|
|
|
|
<input type="submit" value="提交" />
|
|
</form>
|
|
</div>
|