<!DOCTYPE html>
<html>
<head>
    <title>ktech VCL File Manager</title>
    <style>
        body { font-family: Arial, sans-serif; margin: 40px; background: #f5f5f5; }
        .container { background: white; padding: 30px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
        h1 { color: #333; margin-bottom: 20px; }
        .service { margin: 20px 0; padding: 15px; background: #f8f9fa; border-radius: 4px; }
        .service h3 { margin: 0 0 10px 0; color: #007bff; }
        a { color: #007bff; text-decoration: none; }
        a:hover { text-decoration: underline; }
        .status { color: #28a745; font-weight: bold; }
    </style>
</head>
<body>
    <div class="container">
        <h1>ktech VCL File Manager</h1>
        <p class="status">Server Status: Online</p>
        
        <div class="service">
            <h3>ktech VCL File Manager</h3>
            <p>Web-based file browser for managing shared files</p>
            <a href="/files/">Access File Manager</a>
        </div>
    </div>
</body>
</html>