mdkcontroller 1.5.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cores/file/dk.css +10 -0
- package/Cores/file/dk.js +1 -1
- package/package.json +1 -1
package/Cores/file/dk.css
CHANGED
|
@@ -101,4 +101,14 @@
|
|
|
101
101
|
|
|
102
102
|
.dk-transiton300 {
|
|
103
103
|
transition: all ease 0.3s;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.dk-numAuthenticate {
|
|
107
|
+
color: #026fa5;
|
|
108
|
+
font-size: 55px;
|
|
109
|
+
border: 0px solid;
|
|
110
|
+
border-radius: 10px;
|
|
111
|
+
background-color: #7fffd482;
|
|
112
|
+
margin: auto;
|
|
113
|
+
width: 90px;
|
|
104
114
|
}
|
package/Cores/file/dk.js
CHANGED
|
@@ -189,7 +189,7 @@ const DK = {
|
|
|
189
189
|
let realHost = DK.realHost();
|
|
190
190
|
//random number 0-99
|
|
191
191
|
const secrectNum = Math.floor(Math.random() * 100);
|
|
192
|
-
const messW = "Đang yêu cầu xác thực đến DKAuthenticator, Vui lòng chọn " + secrectNum + " trên ứng dụng DKAuthenticator để tiếp tục.";
|
|
192
|
+
const messW = "Đang yêu cầu xác thực đến DKAuthenticator, Vui lòng chọn <p class='dk-numAuthenticate'>" + secrectNum + "</p> trên ứng dụng DKAuthenticator để tiếp tục.";
|
|
193
193
|
DK.showBusy(true, messW);
|
|
194
194
|
fetch(realHost + '/api/users/loginByAuthenticator', {
|
|
195
195
|
method: "POST",
|