|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- @{
- ViewBag.Title = "解绑微信";
- Layout = "~/Views/Shared/_Form.cshtml";
- }
- <style>
- .lr-login-bypsw {
- position: relative;
- width: 100%;
- height: 100%;
- padding: 60px 0 52px 45px;
- }
-
- .error_info {
- font-family: PingFangSC-Regular;
- position: absolute;
- font-size: 12px;
- color: #ED3232;
- right: 75px;
- top: 32px;
- display: none;
- }
-
- .lr-login-input {
- position: relative;
- width: 100%;
- height: 48px;
- margin-bottom: 25px
- }
-
- .lr-login-input input {
- display: block;
- width: 365px;
- text-indent: 31px;
- height: 48px;
- line-height: 46px;
- outline: 0;
- font-family: PingFangSC-Regular;
- font-size: 12px;
- color: #666;
- opacity: .99;
- background: #FFF;
- border: 1px solid #CCC;
- border-radius: 2px
- }
-
- .lr-login-input > .inp_icon {
- position: absolute;
- left: 10px;
- top: 18.5px;
- z-index: 10
- }
-
- .lr-login-input input:focus {
- opacity: .99;
- background: #FFF;
- border: 1px solid #3298DC;
- border-radius: 2px
- }
-
- .codeBtn {
- border: 1px solid #DCDFE6;
- padding: 6px 10px;
- color: #606266;
- font-size: 12px;
- cursor: pointer;
- border-radius: 2px;
- position: absolute;
- left: 260px;
- top: 10px;
- }
- .lr-login-btn {
- display: inline-block;
- text-align: center;
- cursor: pointer;
- background: #3298DC;
- border: 1px solid #3298DC;
- border-radius: 2px;
- font-family: PingFangSC-Regular;
- font-size: 16px;
- color: #FFF;
- height: 48px;
- line-height: 48px;
- width: 365px;
- text-align: center;
- margin-top: 5px;
- }
- </style>
-
- <div class="lr-form-wrap" id="form">
- <div class="lr-login-main lr-login-normal" id="updatepwBox">
- <!--表单-->
- <div class="lr-login-bypsw">
- <div class="error_info">* <span></span></div>
- <div class="lr-login-input">
- <img class="inp_icon" src="~/Content/images/Login/default_psw0.png" alt=""><input id="verifycode" type="text" placeholder="请输入验证码">
- <span id="sendCode" class="codeBtn">发送验证码</span>
- </div>
- <div class="lr-login-btn" id="confirmUpdate"><span>确认解绑</span></div>
- </div>
- </div>
- </div>
- @Html.AppendJsFile("/Views/Home/CancelWeiXinBindForm.js")
|