Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
whb
9 years ago
Commit
747caa09e4818ac3a880707c4575571cbaa693e8
1 parent
97666759
找回密码
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
template/www.yohobuy.com/actions/passport/back/verification.phtml
yohobuy/www.yohobuy.com/application/modules/Passport/controllers/Back.php
template/www.yohobuy.com/actions/passport/back/verification.phtml
View file @
747caa0
...
...
@@ -9,7 +9,7 @@
<li
class=
"po-re"
>
<label
class=
"pn-label"
>手机号码</label>
<span
class=
"country-code"
>+
{
{area
}
}</span>
<span
class=
"phone-num"
>
{
{
phoneNum
}
}</span>
<span
class=
"phone-num"
>
{
{
mobile
}
}</span>
</li>
<li
class=
"po-re"
>
<input
id=
"captcha"
class=
"input va captcha"
type=
"text"
name=
"captcha"
>
...
...
yohobuy/www.yohobuy.com/application/modules/Passport/controllers/Back.php
View file @
747caa0
...
...
@@ -45,8 +45,8 @@ class BackController extends WebAction
if
(
Helpers
::
verifyEmail
(
$phoneNum
)){
//验证邮箱
$email
=
$phoneNum
;
$data
=
BackData
::
sendCodeToEmail
(
$email
);
$this
->
setSession
(
'email'
,
$email
);
if
(
$data
[
'code'
]
==
200
)
{
$this
->
setSession
(
'email'
,
$email
);
$this
->
redirect
(
'sendemail'
);
}
else
{
...
...
@@ -55,10 +55,10 @@ class BackController extends WebAction
}
else
if
(
Helpers
::
verifyMobile
(
$phoneNum
))
{
//验证手机号
$mobile
=
$phoneNum
;
$data
=
BackData
::
sendCodeToMobile
(
$mobile
);
$this
->
setSession
(
'mobile'
,
$mobile
);
$this
->
setSession
(
'area'
,
$area
);
$this
->
setSession
(
'verifyCode'
,
$verifyCode
);
if
(
$data
[
'code'
]
==
200
)
{
$this
->
setSession
(
'mobile'
,
$mobile
);
$this
->
setSession
(
'area'
,
$area
);
$this
->
setSession
(
'verifyCode'
,
$verifyCode
);
$this
->
redirect
(
'verification'
);
}
else
{
...
...
Please
register
or
login
to post a comment