23 lines
726 B
PHTML
23 lines
726 B
PHTML
|
<?php
|
||
|
$this->headTitle($this->config->title->site);
|
||
|
$this->headTitle('用户登录');
|
||
|
$this->headTitle()->setSeparator(' - ');
|
||
|
$this->headLink()->appendStylesheet('/css/register.css');
|
||
|
$this->breadcrumb('<a href="/">首页</a>');
|
||
|
$this->breadcrumb('<a href="/account/login">用户登录</a>');
|
||
|
$this->breadcrumb()->setSeparator(' > ');
|
||
|
?>
|
||
|
<div id="info">
|
||
|
<img src="/images/Login_title.gif" alt="西部数据中心用户登录" />
|
||
|
<?php echo $this->form;?>
|
||
|
</div>
|
||
|
<div id="tool">
|
||
|
<a href="/account/fetchpwd">忘记密码?</a><a href="/account/register">注册新用户</a>
|
||
|
</div>
|
||
|
<?php if (!empty($this->messages)) : ?>
|
||
|
<div id="message">
|
||
|
<?php
|
||
|
foreach ($this->messages as $info)echo $info;
|
||
|
?>
|
||
|
</div>
|
||
|
<?php endif; ?>
|