25 lines
690 B
PHTML
25 lines
690 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/fetchpwd">找回密码</a>');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
?>
|
|
<?php if (!empty($this->messages)) : ?>
|
|
<div id="message">
|
|
<?php
|
|
foreach ($this->messages as $info)echo $info;
|
|
?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ($this->form) : ?>
|
|
<div id="info">
|
|
<?php echo $this->form;?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<div id="tool">
|
|
<a href="/account/login">登录 </a> <a href="/account/register">注册新用户</a>
|
|
</div>
|