profile.html
4.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{template 'headertoo'}
<link href="{WWX_FXXT_ROOT}/recouse/css/bottom.css?x={WWX_FXXT_VERSION}" rel="stylesheet" type="text/css" />
<style>
body{background:#d2e6e9; padding-bottom:63px; font-family:Helvetica, Arial, sans-serif;}
a{color:#666666;}a:hover{color:#3ebacc;}
.profile-box{padding:10px 0; background:transparent url('resource/images/home-bg.jpg') no-repeat; background-size:100% 100%;}
.form-header{clear:both;height:20px;line-height:15px;margin-left:15px; margin-top:20px;border-left:5px solid #000000;padding:5px;font-weight:bold;postion:relative;}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus{color: #3ebacc;}
.btn.btn-primary{background: #56c6d6; color: #FFF; border: 0;}
@media screen and (max-width: 767px) {.tpl-calendar div,.tpl-district-container div{margin-bottom:10px;} .empty{display:none;}}
.btn-group-top-box{padding:10px 0; border-bottom:1px solid #a5d7de;}
.btn-group-top{margin:0 auto; overflow:hidden; width:200px; display:block;}
.btn-group-top .btn{width:100px; -webkit-box-shadow:none; box-shadow:none; border-color:#5ac5d4; color:#5ac5d4; background:#d1e5e9;}
.btn-group-top .btn:hover{color:#FFF; background:#addbe1;}
.btn-group-top .btn.active{color:#FFF; background:#5ac5d4;}
</style>
<link type="text/css" rel="stylesheet" href="{WWX_FXXT_ROOT}/images/style.css">
<div class="head">
<a href="javascript:history.back();" class="bn pull-left"><i class="fa fa-angle-left"></i></a>
<span class="title">完善资料</span>
<a href="{php echo $this->createMobileUrl('mycart')}" class="bn pull-right"><i class="fa fa-shopping-cart"></i><span class="buy-num img-circle"> {$carttotal} </span></a>
</div>
<div class="profile">
<div class="tabbable">
<div class="profile-box">
<form class="tab-content clearfix" method="post" enctype="multipart/form-data">
<input type="hidden" name="from_user" value="{$_W['fans']['from_user']}" />
<div class="tab-pane active animated" id="tab1">
<div class="form-group">
<label class="col-xs-12 col-sm-12 control-label">【头像】</label>
<div class="col-sm-12 col-xs-12">
{php echo tpl_fans_form('avatar', $profile['avatar']);}<br/>
</div>
</div>
<div class="form-group">
<label class="col-xs-12 col-sm-12 control-label">【昵称】</label>
<div class="col-sm-12 col-xs-12">
<input type="text" placeholder="请输入您的昵称" class="form-control" name="nickname" value="{$profile['nickname']}"/><br/>
</div>
</div>
<div class="form-group">
<label class="col-xs-12 col-sm-12 control-label">【真实姓名】</label>
<div class="col-sm-12 col-xs-12">
<input type="text" placeholder="请输入您的真实姓名" class="form-control" name="realname" value="{$profile['realname']}"/><br/>
</div>
</div>
<div class="form-group">
<label class="col-xs-12 col-sm-12 control-label">【银行名称】</label>
<div class="col-sm-12 col-xs-12">
<input type="text" placeholder="请输入您的银行名称" class="form-control" name="banktype" value="{$profile['banktype']}"/><br/>
</div>
</div>
<div class="form-group">
<label class="col-xs-12 col-sm-12 control-label">【银行卡号】</label>
<div class="col-sm-12 col-xs-12">
<input type="tel" placeholder="请输入您的银行卡号" class="form-control" name="bankcard" value="{$profile['bankcard']}"/><br/>
</div>
</div>
<div class="form-group">
<label class="col-xs-12 col-sm-12 control-label">【支付宝账号】</label>
<div class="col-sm-12 col-xs-12">
<input type="text" placeholder="请输入您的支付宝账号,可不填" name="alipay" class="form-control" value="{$profile['alipay']}"/><br/>
</div>
</div>
<div class="form-group">
<label class="col-xs-12 col-sm-12 control-label">【微信号码】</label>
<div class="col-sm-12 col-xs-12">
<input type="text" placeholder="请输入您的微信号码,可不填" name="wxhao" class="form-control" value="{$profile['wxhao']}"/><br/>
</div>
</div>
<div class="form-group">
<label class="col-xs-12 col-sm-12 control-label">提示:</label>
<div class="col-sm-12 col-xs-12">
<p>系统默认将佣金转至您的微信账户,如果无法转入将更换至支付宝或银行。<br/>为了您能快速结佣请提供详细的开户行信息,如工商银行上海梅林支行。</p>
</div>
</div>
<div class="form-group">
<label class="col-xs-12 col-sm-12 control-label"></label>
<div class="col-sm-12 col-xs-12" style="text-align:center">
<br/>
<button type="submit" class="btn btn-primary btn-block" name="submit" value="提交">提交</button>
<br/>
<input type="hidden" name="token" value="{$_W['token']}" />
</div>
</div>
</div>
</form>
</div>
</div>
</div>
{template 'wx_nav'}
{template 'footer'}