isite 2025.1.17 → 2025.1.18
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.
|
@@ -44,10 +44,8 @@ body {
|
|
|
44
44
|
margin-bottom: 0.125rem;
|
|
45
45
|
flex-direction: row;
|
|
46
46
|
flex-wrap: nowrap;
|
|
47
|
-
align-content: center;
|
|
48
|
-
justify-content: center;
|
|
49
|
-
align-items: flex-end;
|
|
50
47
|
gap: 5px;
|
|
48
|
+
align-items: flex-end;
|
|
51
49
|
label {
|
|
52
50
|
cursor: pointer;
|
|
53
51
|
}
|
|
@@ -72,6 +70,26 @@ a {
|
|
|
72
70
|
margin-right: 7px;
|
|
73
71
|
border-bottom: 1px solid var(--label-color);
|
|
74
72
|
}
|
|
73
|
+
input,
|
|
74
|
+
select,
|
|
75
|
+
textarea,
|
|
76
|
+
input.form-control {
|
|
77
|
+
text-align: var(--text-align);
|
|
78
|
+
font-family: var(--font-family);
|
|
79
|
+
height: var(--input-height);
|
|
80
|
+
line-height: var(--line-height);
|
|
81
|
+
padding: var(--input-padding);
|
|
82
|
+
font-size: var(--input-font-size);
|
|
83
|
+
font-weight: var(--input-font-wight);
|
|
84
|
+
color: var(--input-color);
|
|
85
|
+
background-color: var(--input-background-color);
|
|
86
|
+
}
|
|
87
|
+
input:focus,
|
|
88
|
+
select:focus,
|
|
89
|
+
textarea:focus,
|
|
90
|
+
input.form-control {
|
|
91
|
+
color: var(--input-color);
|
|
92
|
+
}
|
|
75
93
|
label {
|
|
76
94
|
float: var(--float);
|
|
77
95
|
color: var(--label-color);
|
|
@@ -133,8 +151,8 @@ i-radio {
|
|
|
133
151
|
white-space: nowrap;
|
|
134
152
|
}
|
|
135
153
|
i-checklist i-checkbox {
|
|
136
|
-
|
|
137
|
-
|
|
154
|
+
display: flex !important;
|
|
155
|
+
flex-direction: row !important;
|
|
138
156
|
}
|
|
139
157
|
i-button {
|
|
140
158
|
display: contents;
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
<li>Protected Browser FingerPrint</li>
|
|
75
75
|
<li>Watching Streaming Sites without Ads</li>
|
|
76
76
|
<li>Support Safty Mode For Children</li>
|
|
77
|
-
<li>Create & Custom Virual PC For
|
|
77
|
+
<li>Create & Custom Virual PC For every User</li>
|
|
78
78
|
</ul>
|
|
79
79
|
</div>
|
|
80
80
|
<div class="row padding margin">
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
<li>Protected Browser FingerPrint</li>
|
|
74
74
|
<li>Watching Streaming Sites without Ads</li>
|
|
75
75
|
<li>Support Safty Mode For Children</li>
|
|
76
|
-
<li>Create & Custom Virual PC For
|
|
76
|
+
<li>Create & Custom Virual PC For every User</li>
|
|
77
77
|
</ul>
|
|
78
78
|
</div>
|
|
79
79
|
<div class="row padding margin">
|
package/lib/session.js
CHANGED
|
@@ -138,6 +138,11 @@ module.exports = function init(req, res, ____0, callback) {
|
|
|
138
138
|
session.user = user;
|
|
139
139
|
callback(session);
|
|
140
140
|
session.$save();
|
|
141
|
+
}else{
|
|
142
|
+
session.user = null;
|
|
143
|
+
session.user_id = null;
|
|
144
|
+
callback(session);
|
|
145
|
+
session.$save();
|
|
141
146
|
}
|
|
142
147
|
}
|
|
143
148
|
);
|
|
@@ -155,6 +160,11 @@ module.exports = function init(req, res, ____0, callback) {
|
|
|
155
160
|
session.user = user;
|
|
156
161
|
callback(session);
|
|
157
162
|
session.$save();
|
|
163
|
+
}else{
|
|
164
|
+
session.user = null;
|
|
165
|
+
session.user_id = null;
|
|
166
|
+
callback(session);
|
|
167
|
+
session.$save();
|
|
158
168
|
}
|
|
159
169
|
}
|
|
160
170
|
);
|