failed.htm 930 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1">
  5. <title>WiFi connection failed</title>
  6. <style type="text/css">
  7. body {
  8. font-family:'Arial',sans-serif;
  9. }
  10. .button {
  11. background-color: #e4685d;
  12. border: none;
  13. box-shadow: 0 1px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
  14. -moz-border-radius:4px;
  15. -webkit-border-radius:4px;
  16. border-radius:4px;
  17. color: white;
  18. padding: 10px 30px;
  19. text-align: center;
  20. text-decoration: none;
  21. display: inline-block;
  22. font-size: 16px;
  23. margin: 4px 2px;
  24. }
  25. .button:active {
  26. position:relative;
  27. top:2px;
  28. box-shadow: 0 0 0 0 rgba(0,0,0,0.2), 0 0 0 0 rgba(0,0,0,0.19);
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <h2>WiFi AP <span style="color:red;">{{SSID}}</span> connection failed.</h2>
  34. <h4>Resutl: {{RESULT}}</h4>
  35. <div style="margin-top: 1.0em;text-align: center;"><a href="/" class="button">Retry</a></div>
  36. </body>
  37. </html>