"\n    <html>\n        <head>\n            <title>Logic Unit Management - Login</title>\n            <style>\n                body { font-family: Arial, sans-serif; text-align: center; margin-top: 100px; }\n                .container { max-width: 500px; margin: 0 auto; padding: 20px; }\n                .login-btn { \n                    background-color: #0078d4; \n                    color: white; \n                    padding: 12px 24px; \n                    text-decoration: none; \n                    border-radius: 4px; \n                    display: inline-block; \n                    margin: 20px 0;\n                }\n                .login-btn:hover { background-color: #106ebe; }\n            </style>\n        </head>\n        <body>\n            <div class=\"container\">\n                <h1>Logic Unit Management</h1>\n                <p>Generate and manage logic units for policies, procedures, and workflows.</p>\n                <p>Please log in with your Microsoft/Azure account to continue.</p>\n                <a href=\"/login\" class=\"login-btn\">🔐 Login with Microsoft</a>\n                <div style=\"margin-top: 40px; font-size: 14px; color: #666;\">\n                    <h3>Features:</h3>\n                    <ul style=\"text-align: left; display: inline-block;\">\n                        <li><strong>Private Policies:</strong> Create policies that only you can see and edit</li>\n                        <li><strong>Public Policies:</strong> Share policies with your team</li>\n                        <li><strong>Logic Generation:</strong> Convert documents into executable logic</li>\n                        <li><strong>Chat Interface:</strong> Interact with your policies through AI chat</li>\n                    </ul>\n                </div>\n            </div>\n        </body>\n    </html>\n    "