18 lines
720 B
PHTML
18 lines
720 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/register">用户注册</a>');
|
||
|
$this->breadcrumb()->setSeparator(' > ');
|
||
|
?>
|
||
|
<div id="info">
|
||
|
<img src="/images/pass_login1.gif" /> 确认服务条款
|
||
|
<img src="/images/pass_pic_arrowhead_2.gif" />
|
||
|
<img src="/images/pass_login2.gif" /> 填写基本信息
|
||
|
<img src="/images/pass_pic_arrowhead_2.gif" />
|
||
|
<img src="/images/pass_login3.gif" /> 注册完成
|
||
|
|
||
|
|
||
|
<?php echo $this->form;?></div>
|