diff --git a/app/friendship/controller/FriendController.php b/app/friendship/controller/FriendController.php
index f7ef1bf..674624d 100644
--- a/app/friendship/controller/FriendController.php
+++ b/app/friendship/controller/FriendController.php
@@ -169,4 +169,9 @@ class FriendController extends HomeBaseController
         }
     }
 
+    //密码管理验证码页面
+    public function passwordManager() {
+        return $this->fetch(':password_manager');
+    }
+
 }
\ No newline at end of file
diff --git a/public/themes/simpleboot3/friendship/password_manager.html b/public/themes/simpleboot3/friendship/password_manager.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/public/themes/simpleboot3/friendship/password_manager.html
diff --git a/public/themes/simpleboot3/user/center/edit_phone.html b/public/themes/simpleboot3/user/center/edit_phone.html
index c7f1079..81cb98d 100644
--- a/public/themes/simpleboot3/user/center/edit_phone.html
+++ b/public/themes/simpleboot3/user/center/edit_phone.html
@@ -180,7 +180,7 @@
 
     if(t!=null){
         curCount=t;
-        $(".nextstep").attr("disabled",true);
+        //$(".nextstep").attr("disabled",true);
         $(".sendcode").attr("disabled",true)
         var phone=localStorage.getItem("mobile");
         $(".enterphone").val(phone)
@@ -203,7 +203,7 @@
         localStorage.setItem("mobile",tel)
         //设置button效果,开始计时
         $(".sendcode").attr("disabled",true);
-        $(".nextstep").attr("disabled",true);
+        //$(".nextstep").attr("disabled",true);
         // $(".sendcode").unbind()
         $(".sendcode").html( curCount + "秒");
         $(".sendcode").css("color","#fff");
@@ -215,7 +215,7 @@
         if (curCount == 0) {
             window.clearInterval(InterValObj);//停止计时器
             $(".sendcode").removeAttr("disabled");//启用按钮
-            $(".nextstep").removeAttr("disabled");
+            //$(".nextstep").removeAttr("disabled");
             $(".sendcode").html("重新发送验证码");
             $(".sendcode").css("color","#fff");
             localStorage.clear();
diff --git a/public/themes/simpleboot3/user/center/my_balance.html b/public/themes/simpleboot3/user/center/my_balance.html
index 749efbe..18d64f6 100644
--- a/public/themes/simpleboot3/user/center/my_balance.html
+++ b/public/themes/simpleboot3/user/center/my_balance.html
@@ -72,7 +72,7 @@
             <p class="record">积分赠送</p>
             <P class="iconfont icon-jinru"></P>
         </div>
-        <div class="list password">
+        <div class="list password" data-url="{:url('friendship/Friend/passwordManager')}">
             <p class="record">积分密码管理</p>
             <P class="iconfont icon-jinru"></P>
         </div>
@@ -92,7 +92,7 @@
         window.location.href=$(this).attr('data-url');
     })
     $(".password").click(function(){
-
+        window.location.href=$(this).attr('data-url');
     })
 </script>
 </html>