|
@@ -13,6 +13,7 @@
|
|
|
<link href="../static/css/style.css" th:href="@{/css/style.css}" rel="stylesheet"/>
|
|
|
<link href="../static/css/loginLogin.css" th:href="@{/css/loginLogin.css}" rel="stylesheet"/>
|
|
|
<link href="../static/ruoyi/css/ry-ui.css" th:href="@{/ruoyi/css/ry-ui.css?v=4.0.0}" rel="stylesheet"/>
|
|
|
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css">
|
|
|
<!--[if lt IE 9]>
|
|
|
<meta http-equiv="refresh" content="0;ie.html"/>
|
|
|
<![endif]-->
|
|
@@ -50,6 +51,7 @@
|
|
|
<i class="icon-search2"></i>
|
|
|
<input type="password" name="password" class="form-control pword" id="zhpassword" placeholder="密码"
|
|
|
required="required"/>
|
|
|
+ <i class="bi bi-eye-slash" id="conceal" onclick="showOrHidden()"></i>
|
|
|
</div>
|
|
|
<div class="row m-t" style="margin-top: 5px">
|
|
|
<div class="col-xs-6" style="padding-right:2px;width: 60%">
|
|
@@ -71,7 +73,6 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
-
|
|
|
<div class="checkbox-custom" style="width: 100%" th:classappend="${captchaEnabled==false} ? 'm-t'">
|
|
|
<!-- <input type="checkbox" id="zhrememberme" name="rememberme"> <label for="rememberme">记住我</label>-->
|
|
|
<a style="float:right" onclick="downloadExe()">插件下载</a>
|
|
@@ -83,6 +84,10 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+
|
|
|
+<!-- 全局js -->
|
|
|
+<script src="../static/js/jquery.min.js" th:src="@{/js/jquery.min.js}"></script>
|
|
|
+<script src="../static/js/bootstrap.min.js" th:src="@{/js/bootstrap.min.js}"></script>
|
|
|
<script th:inline="javascript"> var ctx = [[@{/}]];
|
|
|
var captchaType = [[${captchaType}]];
|
|
|
|
|
@@ -94,10 +99,22 @@ function downloadExe() {
|
|
|
window.location.href = ctx + "common/download/resource?resource=/profile/download/mPlugin_SKF_Setup.exe"
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+var passWord = $('#zhpassword')
|
|
|
+var anniu = $('#conceal')
|
|
|
+function showOrHidden() {
|
|
|
+ if(passWord.attr('type')==='password')
|
|
|
+ {
|
|
|
+ passWord.attr('type','text');
|
|
|
+ anniu.removeClass('bi bi-eye-slash');
|
|
|
+ anniu.addClass('bi bi-eye');
|
|
|
+ }else{
|
|
|
+ passWord.attr('type','password');
|
|
|
+ anniu.removeClass('bi bi-eye');
|
|
|
+ anniu.addClass('bi bi-eye-slash');
|
|
|
+ }
|
|
|
+}
|
|
|
</script>
|
|
|
-<!-- 全局js -->
|
|
|
-<script src="../static/js/jquery.min.js" th:src="@{/js/jquery.min.js}"></script>
|
|
|
-<script src="../static/js/bootstrap.min.js" th:src="@{/js/bootstrap.min.js}"></script>
|
|
|
<!-- 验证插件 -->
|
|
|
<script src="../static/ajax/libs/validate/jquery.validate.min.js"
|
|
|
th:src="@{/ajax/libs/validate/jquery.validate.min.js}"></script>
|