You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
888 B
27 lines
888 B
{layout name="public/layout" /}
|
|
<ol class="breadcrumb" style="margin-top:10px">
|
|
<li><i class="glyphicon glyphicon-home"></i> <a href="{:url('center/index')}">用户中心</a></li>
|
|
<li class="active">基本信息</li>
|
|
</ol>
|
|
<div class="text-center"><img src="{$member_list_headpic|get_imgurl=1}" class="img-circle" style="max-width:120px;"/></div>
|
|
<br/>
|
|
<table class="table">
|
|
<tbody>
|
|
<tr>
|
|
<th width="96px">昵称:</th>
|
|
<td>{$member_list_nickname|default=$member_list_username}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>性别:</th>
|
|
<td>{php}$sexs=array("1"=>lang('ProMonkey'),"2"=>lang('ProMM'),"3"=>lang('secrecy'));{/php}{$sexs[$member_list_sex]}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>手机号:</th>
|
|
<td>{$member_list_tel|default=""}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>地址:</th>
|
|
<td>{$address|default="--"}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|