Compare commits
2 Commits
a91c21ecfd
...
5a0d96b6c6
Author | SHA1 | Date | |
---|---|---|---|
5a0d96b6c6 | |||
c0c8a43c77 |
@@ -45,7 +45,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<p>Enjoy benefits and unlock more feature such as remote access, geo-redundant backups etc. <br><br>
|
<p>Enjoy benefits and unlock more feature such as remote access, geo-redundant backups etc. <br><br>
|
||||||
<a href="" class="details">Read details</a><br><br>
|
<a href="" class="details">Read details</a><br><br>
|
||||||
<img src="/img/upgrade.png" alt="Upgrade now" width="80%" id="vpnBtn" style="cursor:pointer"/>
|
<img src="/img/upgrade.png" alt="Upgrade now" width="80%" id="upgradeBtn" style="cursor:pointer"/>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -98,6 +98,7 @@
|
|||||||
const settingsBtn = document.getElementById('settingsBtn');
|
const settingsBtn = document.getElementById('settingsBtn');
|
||||||
|
|
||||||
const vpnBtn = document.getElementById('vpnBtn');
|
const vpnBtn = document.getElementById('vpnBtn');
|
||||||
|
const upgradeBtn = document.getElementById('upgradeBtn');
|
||||||
|
|
||||||
const myAppsContainer = document.getElementById('myAppsContainer');
|
const myAppsContainer = document.getElementById('myAppsContainer');
|
||||||
const popup = document.getElementById('popup');
|
const popup = document.getElementById('popup');
|
||||||
@@ -359,6 +360,7 @@
|
|||||||
settingsBtn.addEventListener('click', () => {renderSettings(); activate(settingsBtn)});
|
settingsBtn.addEventListener('click', () => {renderSettings(); activate(settingsBtn)});
|
||||||
|
|
||||||
vpnBtn.addEventListener('click', () => renderVPN());
|
vpnBtn.addEventListener('click', () => renderVPN());
|
||||||
|
upgradeBtn.addEventListener('click', () => renderVPN());
|
||||||
|
|
||||||
// renderApps(true);
|
// renderApps(true);
|
||||||
|
|
||||||
|
3
scan.php
3
scan.php
@@ -497,7 +497,8 @@ switch ($_GET["op"]) {
|
|||||||
$arr = check_response("version");
|
$arr = check_response("version");
|
||||||
if (!empty($arr)) {
|
if (!empty($arr)) {
|
||||||
$data = $arr["version"];
|
$data = $arr["version"];
|
||||||
echo $data["VERSION"];
|
echo "Framework version: ".$data["VERSION"]."\n";
|
||||||
|
echo "Frontend version: 1.1.13";
|
||||||
}
|
}
|
||||||
else echo "Version not found";
|
else echo "Version not found";
|
||||||
break;
|
break;
|
||||||
|
Reference in New Issue
Block a user