bklLiudl
2024-07-23 675b8bcc4a3630d95e3d0b97d933e63442075ecb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
@{
    Layout = null;
}
 
<!DOCTYPE html>
 
<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title></title>
    <link href="~/Theme/Boostrap/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
    <link href="~/Theme/Boostrap/bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet" />
    <link href="~/Theme/Boostrap/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
    <link href="~/Theme/Customer/Index/style.css" rel="stylesheet" />
  
    <link href="~/Theme/plugins/jbox-v2.3/jBox/Skins/Blue/jbox.css" rel="stylesheet" />
    <link href="~/Theme/plugins/mmgrid/mmPaginator.css" rel="stylesheet" />
    <link href="~/Theme/plugins/mmgrid/mmGrid.css" rel="stylesheet" />
    <link href="~/Theme/Boostrap/My97DatePicker/skin/WdatePicker.css" rel="stylesheet" />
 
 
    <script src="~/Theme/Js/jquery-1.8.3.min.js"></script>
    <script src="~/Theme/Boostrap/bootstrap/js/bootstrap.min.js"></script>
 
    <script src="~/Theme/plugins/jbox-v2.3/jBox/jquery.jBox-2.3.min.js"></script>
    <script src="~/Theme/plugins/jbox-v2.3/jBox/i18n/jquery.jBox-zh-CN.js"></script>
    <script src="~/Theme/Js/moment.js"></script>
    <script src="~/Theme/Js/Common.js"></script>
    <script src="~/Theme/Js/UICommon.js"></script>
    <script src="~/Theme/plugins/mmgrid/mmGrid.js"></script>
    <script src="~/Theme/plugins/mmgrid/mmPaginator.js"></script>
    <script src="~/Theme/Js/app.js"></script>
    <script src="~/Theme/Boostrap/My97DatePicker/WdatePicker.js"></script>
 
    <script src="~/Theme/Customer/User/ChangePass.js"></script>
 
    <style type="text/css">
        .onlyCenter {
            width:400px;
            height:300px;
            background:#ffffff;
            margin:0 auto;
            padding-top:50px;
        }
    </style>
</head>
<body>
 
    @*<div class="form-horizontal">
        <br />
        <div class="onlyCenter">
            <div class="control-group">
                <label class="control-label dialogtitle">原始密码:</label>
                <div class="controls dialogcontent">
                    <input class="input-medium" name="CurrentPass" placeholder="" type="password" value="" />
                </div>
            </div>
 
            <div class="control-group">
                <label class="control-label dialogtitle">新密码:</label>
                <div class="controls dialogcontent">
                    <input class="input-medium" name="NewPass" placeholder="" type="password" value="" />
                </div>
            </div>
 
            <div class="control-group">
                <label class="control-label dialogtitle">确认密码:</label>
                <div class="controls dialogcontent">
                    <input class="input-medium" name="ConfirmPass" placeholder="" type="password" value="" />
                </div>
            </div>
 
            <div class="control-group">
                <a class="btn btn-primary " data-command="ok" href="javascript:void(0)">&nbsp;确定</a>
                <a class="btn btn-primary " data-command="close" href="javascript:void(0)">&nbsp;关闭</a>
            </div>
        </div>
    </div>*@
    <script type="text/javascript">
        $(document).ready(function () {
           
            ChangePass.ChangePwd("@ViewBag.UserCode");
        });
    </script>
</body>
</html>