connection_failed.html 582 B

123456789101112131415161718192021222324252627
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Connection failed</title>
  7. <style>
  8. body {
  9. display: flex;
  10. align-items: center;
  11. justify-content: center;
  12. height: 100vh;
  13. margin: 0;
  14. }
  15. .container {
  16. text-align: center;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div class="container">
  22. <h1>Connection failed</h1>
  23. <p>Something went wrong.</p>
  24. </div>
  25. </body>
  26. </html>