| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Embedded Console - API Wizard</title> | |
| <link rel="icon" type="image/x-icon" href="https://www.gstatic.com/devrel-devsite/prod/v45f61267e2282694b2d2f3e2e2ff6c1050b0b1a6ff5f8eb3c3cba3b6a0804a8/cloud/images/favicons/onecloud/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <style> | |
| .console-iframe { | |
| height: calc(100vh - 64px); | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-100"> | |
| <!-- Navigation --> | |
| <nav class="gradient-bg text-white shadow-lg"> | |
| <div class="container mx-auto px-6 py-3 flex justify-between items-center"> | |
| <div class="flex items-center space-x-4"> | |
| <i data-feather="cloud" class="w-8 h-8"></i> | |
| <span class="text-xl font-bold">API Wizard</span> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-8"> | |
| <a href="index.html" class="hover:text-yellow-200 transition">Home</a> | |
| <a href="https://console.cloud.google.com/" class="hover:text-yellow-200 transition">Official Console</a> | |
| </div> | |
| <button class="md:hidden focus:outline-none"> | |
| <i data-feather="menu" class="w-6 h-6"></i> | |
| </button> | |
| </div> | |
| </nav> | |
| <!-- Embedded Console --> | |
| <div class="w-full"> | |
| <iframe src="https://console.cloud.google.com/" frameborder="0" class="w-full console-iframe"></iframe> | |
| </div> | |
| <script> | |
| feather.replace(); | |
| </script> | |
| </body> | |
| </html> | |