AccountPasswordIndex.blade.php 1.2 KB

12345678910111213141516171819202122232425
  1. {include file="Application/Home/View/Public/header.blade.php"}
  2. {include file="Application/Home/View/Public/userLeft.blade.php"}
  3. <div class="member-content">
  4. <h3 class="memberTitle" style="text-align: center;border-bottom: 1px solid gainsboro;">密码修改</h3>
  5. <form action="" method="post" id="passwordForm" onsubmit="return regpost()" class="changepw">
  6. <input type="password" name="old_password" id="oldPasswordId" placeholder="请输入原密码" />
  7. <input type="password" name="new_password" id="newPasswordId" placeholder="请输入新密码" />
  8. <input type="password" name="again_password" id="againPasswordId" placeholder="请确认新密码" />
  9. <input type="submit" value="确认修改" class="btnInputCe btnInputCepwd" />
  10. </form>
  11. </div>
  12. </div>
  13. </div>
  14. <script src="/Public/Home/js/checkToken.js"></script>
  15. <script src="/Public/Home/js/accountPassword.js"></script>
  16. <script >
  17. //导航高亮
  18. $(".leftList>li").removeClass('active');
  19. $(".leftList>li li").removeClass('active')
  20. $(".leftList>li").eq(2).addClass('active');
  21. $(".leftList>li.active").find('li').eq(0).addClass('active');
  22. </script>
  23. {include file="Application/Home/View/Public/footer.php"}