We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f972c28 commit e5b2fbeCopy full SHA for e5b2fbe
client/index.html
@@ -33,6 +33,7 @@ <h1>EPIC_Tracker</h1>
33
<span class="pin"></span><br>
34
<span class="weather"></span><br>
35
<span class="temperature"></span><br>
36
+ <span class="VPN"></span>
37
<strong class="rotation-rate"></strong><br>
38
<strong class="acceleration"></strong>
39
<br>
client/index.js
@@ -156,7 +156,9 @@ nowFetch().then(response => {
156
}
157
if(diff > 50000) {
158
console.log("YAY VPN")
159
+ document.querySelector('.VPN').textContent = `You ARE using a VPN`
160
}else {
161
console.log("NO VPN")
162
+ document.querySelector('.VPN').textContent = `You donot seem to Use a VPN`
163
164
})
0 commit comments