zhao
2021-07-19 8347f2fbddbd25369359dcb2da1233ac48a19fdc
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
@{
    Layout = null;
}
<!doctype html>
<html>
<head>
    <title>@ViewBag.CnName-登录</title>
    <link href="~/Content/js/alert/css/jquery.alert.css" rel="stylesheet" />
    <link type="text/css" href="~/Content/css/login.css" rel="stylesheet" />
    <script src="~/Content/js/jquery/jquery-1.8.1.min.js"></script>
    <script src="~/Content/js/core/json2.js"></script>
    <script src="~/Content/js/core/knockout-2.2.1.js"></script>
    <script src="~/Content/js/alert/jquery.alert.js"></script>
    <script src="~/Content/js/pages/login.js"></script>
</head>
<body>
    <div class="wrapper">
        <form data-bind="submit:loginClick">
 
            <div class="login_head">
                <div class="logo">
                    <a>
                        @{
                            if (ViewBag.isDisplaySystemIcon == "Y")
                            {
                                if ("ntsd".Equals(ViewBag.projectCode))
                                {
                                    <img src="~/Content/Images/logo_login_ntsd.png">
                                }
                                else
                                {
                                    <img src="~/Content/Images/logo.png">
                                }
                            }
                        }
                        <b class="logoName">@ViewBag.CnName</b>
                    </a>
                </div>
            </div>
            <div class="login">
                <div class="login_content">
                    <div class="login_img"></div>
                    <div class="login_area">
                        <div class="form">
                            <div style="display: none;">
                                <input data-val="true" id="RemusrNamePhone" name="RemusrNamePhone" type="checkbox" value="true"><input name="RemusrNamePhone" type="hidden" value="false">
                            </div>
                            <p>
                                <strong>欢迎登录</strong>
                            </p>
                            <div class="textInput" id="txtdivUsername">
                                <input type="text" id="txtEmName" value="请输入登录帐号" class="username textGray" data-bind="value:form.usercode">
                            </div>
                            <div class="pwdInput" id="txtdivPassword">
                                <input type="password" id="txtEmPwd" value="" style="width: 215px" class="userpwd textGray" data-bind="value:form.password">
                            </div>
                            <div class="verifyInput">
                                <input type="text" id="txtverify" class="userVerify textGray" value="请输入验证码" data-bind="value:form.checkCode">
                                <a href="javascript:void(0)">
                                    <span class="yanzheng" id="checkCode" onclick="createCode();"></span>
                                </a>
                            </div>
                            <div class="login_btn" id="btnlogin" style="text-align: center">
                                <input type="submit" value="登录" class="login_button" />
                                @*<a href="javascript:void(0)" >登&nbsp;&nbsp;录</a>*@
                            </div>
                        </div>
                    </div>
                </div>
            </div>
            @{
                if (ViewBag.isDisplayTechnicalSupport == "Y")
                {
                    <div class="footer" style="border-top:none;">
                        <p class="f1"></p>
                        @*<p>产品结构管理系统v2.0</p>
                            <p>本站发布的所有内容,未经许可,不得转载</p>*@
                        <p>网站备案:皖ICP备665243号 <span class="support">技术支持:<a href="http://www.han-he.com/" target="_blank">@ViewBag.Company</a></span></p>
                    </div>
                }
            }
           
            <!--
            <div class="title-zh">@ViewBag.CnName</div>
            <div class="title-en" style="@ViewBag.EnNameStyle">@ViewBag.EnName</div>
            <div class="message" data-bind="html:message"></div>
            <table border="0" style="width:300px;">
                <tr>
                    <td style="padding-bottom: 5px;width:55px;">用户名:</td>
                    <td colspan="2"><input type="text" class="login" data-bind="value:form.usercode" /></td>
                </tr>
                <tr>
                    <td class="lable" style="letter-spacing: 0.5em; vertical-align: middle">密码:</td>
                    <td colspan="2"><input type="password" class="login" data-bind="value:form.password" /></td>
                </tr>
                <tr>
                    <td></td>
                    <td colspan="2"><input type="checkbox" data-bind="checked:form.remember" /><span>系统记住我</span></td>
                </tr>
                <tr>
                    <td colspan="3" style="text-align:center">
                        <input type="submit" value="登录" class="login_button" />
                        <input type="button" value="重置" class="reset_botton" data-bind="click:resetClick" />
                    </td>
                </tr>
            </table>-->
        </form>
    </div>
</body>
</html>
<script>
    $(function () {
            if (window != top) {
                top.location.href = location.href;
            }
        });
</script>