You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CancelWeiXinBindForm.cshtml 2.6 KiB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. @{
  2. ViewBag.Title = "解绑微信";
  3. Layout = "~/Views/Shared/_Form.cshtml";
  4. }
  5. <style>
  6. .lr-login-bypsw {
  7. position: relative;
  8. width: 100%;
  9. height: 100%;
  10. padding: 60px 0 52px 45px;
  11. }
  12. .error_info {
  13. font-family: PingFangSC-Regular;
  14. position: absolute;
  15. font-size: 12px;
  16. color: #ED3232;
  17. right: 75px;
  18. top: 32px;
  19. display: none;
  20. }
  21. .lr-login-input {
  22. position: relative;
  23. width: 100%;
  24. height: 48px;
  25. margin-bottom: 25px
  26. }
  27. .lr-login-input input {
  28. display: block;
  29. width: 365px;
  30. text-indent: 31px;
  31. height: 48px;
  32. line-height: 46px;
  33. outline: 0;
  34. font-family: PingFangSC-Regular;
  35. font-size: 12px;
  36. color: #666;
  37. opacity: .99;
  38. background: #FFF;
  39. border: 1px solid #CCC;
  40. border-radius: 2px
  41. }
  42. .lr-login-input > .inp_icon {
  43. position: absolute;
  44. left: 10px;
  45. top: 18.5px;
  46. z-index: 10
  47. }
  48. .lr-login-input input:focus {
  49. opacity: .99;
  50. background: #FFF;
  51. border: 1px solid #3298DC;
  52. border-radius: 2px
  53. }
  54. .codeBtn {
  55. border: 1px solid #DCDFE6;
  56. padding: 6px 10px;
  57. color: #606266;
  58. font-size: 12px;
  59. cursor: pointer;
  60. border-radius: 2px;
  61. position: absolute;
  62. left: 260px;
  63. top: 10px;
  64. }
  65. .lr-login-btn {
  66. display: inline-block;
  67. text-align: center;
  68. cursor: pointer;
  69. background: #3298DC;
  70. border: 1px solid #3298DC;
  71. border-radius: 2px;
  72. font-family: PingFangSC-Regular;
  73. font-size: 16px;
  74. color: #FFF;
  75. height: 48px;
  76. line-height: 48px;
  77. width: 365px;
  78. text-align: center;
  79. margin-top: 5px;
  80. }
  81. </style>
  82. <div class="lr-form-wrap" id="form">
  83. <div class="lr-login-main lr-login-normal" id="updatepwBox">
  84. <!--表单-->
  85. <div class="lr-login-bypsw">
  86. <div class="error_info">*&nbsp;<span></span></div>
  87. <div class="lr-login-input">
  88. <img class="inp_icon" src="~/Content/images/Login/default_psw0.png" alt=""><input id="verifycode" type="text" placeholder="请输入验证码">
  89. <span id="sendCode" class="codeBtn">发送验证码</span>
  90. </div>
  91. <div class="lr-login-btn" id="confirmUpdate"><span>确认解绑</span></div>
  92. </div>
  93. </div>
  94. </div>
  95. @Html.AppendJsFile("/Views/Home/CancelWeiXinBindForm.js")