13693261870
2024-09-02 7d1535b74b9c27411bc45b695675b335c30f3c3a
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
<!DOCTYPE html>
<html lang="zh-CN" xmlns:th="http://www.w3.org/1999/xhtml">
<head>
    <base href="./" th:href="'/'"/>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>WGClOUD监控系统</title>
<link type="text/css" rel="stylesheet" th:href="@{'/static/logincss/components.css'}" />
<link type="text/css" rel="stylesheet" th:href="@{'/static/logincss/fix.css'}" />
<link type="text/css" rel="stylesheet" th:href="@{'/static/logincss/suri-bootstrap.css'}" />
<link type="text/css" rel="stylesheet" th:href="@{'/static/logincss/bootstrap.min.css'}" />
<link type="text/css" rel="stylesheet" th:href="@{'/static/logincss/font-awesome.min.css'}" />
<link type="text/css" rel="stylesheet" th:href="@{'/static/logincss/ionicons.min.css'}" />
<link type="text/css" rel="stylesheet" th:href="@{'/static/logincss/atmosfero.css'}" />
 
<link rel="shortcut icon" type="image/x-icon" th:href="@{'/static/logincss/favicon.png'}"/>
        
</head>
<body class="login-page">
 
<div class="login-box">
        <div class="login-box-content">
            <div class="login-logo">
                <a href="http://www.wgstart.com" target="_blank" style="color: #fff;font-size: 16px;font-weight:bold"><img width="60" height="60" th:src="@{'/static/logincss/logo.png'}"><span  style="margin-left:5px;">WGCLOUD</span></a>
              </div>
            <div class="login-box-body">
            <p class="login-box-msg">账号登录</p>
                
        <form id="form1" th:action="@{'/login/login'}"  method="post" onsubmit="setMd5Pwd()" class="form-horizontal">
    
              <div class="form-group">
               <div class="col-sm-12">
                      <input id="userName" name="userName" placeholder="输入账号" maxlength="50" autocomplete="off" class="validate[required] form-control" type="text" value="admin">
                </div>
              </div>
              
              <div class="form-group">
               <div class="col-sm-12">
                      <input placeholder='输入密码' id="passwd" name="passwd" maxlength="20" class="validate[required] form-control" autocomplete="off" type="password" value="111111">
                      <input type="hidden" id="md5pwd" name="md5pwd" value=""/>
                </div>
              </div>
 
            <div class="form-group"  style="color:red;font-weight:bold;text-align: center;" th:text="${error}"></div>
 
             <div class="form-group">
               <div class="col-sm-12">
                   <input value="登录" class="btn btn-primary btn-block" type="submit">
                </div>
              </div>
                 
              <div class="form-group">
              </div>
        </form>
        </div>
        </div>
    </div>
 
 
 
    <center>
        &nbsp;<a target="_blank" href='http://www.wgstart.com'> ©2017-2023  www.wgstart.com . All Rights Reserved. Version 2.3.7(开源版)</a>
    </center>
    <link rel="stylesheet" th:href="@{'/static/js/jQuery/validationEngine.jquery.css'}" type="text/css"/>
    <script th:src="@{'/static/js/jQuery/jquery-3.2.0.min.js'}"></script>
    <script th:src="@{'/static/js/jQuery/jquery.validationEngine-zh_CN.js'}" type="text/javascript" charset="utf-8"></script>
    <script th:src="@{'/static/js/jQuery/jquery.validationEngine.js'}" type="text/javascript" charset="utf-8"></script>
    <script type="text/javascript" th:src="@{'/static/common/md5.js'}"></script>
    <script type="text/javascript" th:src="@{'/static/js/login.js'}"></script>
</body>
</html>