index.hbs
3.49 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
{{> sign-header}}
<div class="login-page passport-page">
{{# passport}}
<ul>
<li class="clearfix">
<div class="title">登录 SIGN IN</div>
</li>
<li class="clearfix">
<select id="country-list" class="country-list">
{{#each countryList}}
<option {{#if selected}}selected="selected"{{/if}} value="{{areaCode}}">{{name}}</option>
{{/each}}
</select>
<div id="phone" class="left phone needTip">
<span id="country-code" class="country-code">{{countryCode}}</span>
<input id="account" class="account input phone-num va" name="account" value="{{bindMobile}}"
type="text"
placeholder="Phone Number" autocomplete="off">
</div>
</li>
<li class="clearfix">
<input id="password" class="input password va needTip" name="password" type="password"
placeholder="Password"
autocomplete="off" maxlength="20">
</li>
<li class="clearfix captcha-wrap hide">
<input id="captcha" class="input va captcha needTip" type="text" name="captcha" placeholder="图形验证码"
autocomplete="off" maxlength="4">
<div class="left captcha-component">
<img id="captcha-img" class="left captcha-img" alt="">
<a class="left link change-captcha"><span class="iconfont gray"></span></a>
</div>
</li>
<li class="clearfix">
<span class="left login-fail-tip hide">
<span class="'iconfont"></span>
<em></em>
</span>
<a id="login-btn" class="btn login-btn">登录</a>
</li>
<li class="clearfix">
<span class="remember-me checked">
<span class="iconfont checkbox small"></span>
下次自动登录
</span>
<span class="right">
<a class="blue forget-password" href="{{forgetPwd}}">忘记密码</a>
</span>
</li>
<li class="clearfix third-party-login">
<a href="{{weixinLogin}}">
<span class="iconfont weixin"></span>
</a>
<a href="{{qqLogin}}">
<span class="iconfont qq"></span>
</a>
<a href="{{weiboLogin}}">
<span class="iconfont weibo"></span>
</a>
<a href="{{alipayLogin}}">
<span class="iconfont alipay"></span>
</a>
</li>
<li class="clearfix other-opts">
<span>
还没有加入YOHO!FAMILY?
</span>
<span>
<a class="blue" href="{{fastReg}}">快速注册</a>
</span>
</li>
<div class="tips hide">
<div class="triangle"></div>
<div class="rectangle"></div>
</div>
</ul>
<input id="country-code-hide" name="countryCode" type="hidden" value="{{countryCode}}">
{{/ passport}}
</div>