The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.1KB

  1. <html>
  2. <head>
  3. <meta http-equiv="X-UA-Compatible" content="IE=11">
  4. <style>
  5. body {
  6. background-color: #f1f1f1;
  7. color: #101010;
  8. font-family: Helvetica, Arial, sans-serif;
  9. display: flex;
  10. justify-content: center;
  11. align-items: center;
  12. }
  13. .button {
  14. display: block;
  15. padding: 15px 20px 16px;
  16. width: 200px;
  17. border: 1px solid #c8c9cb;
  18. border-radius: 6px;
  19. margin: auto;
  20. cursor: pointer;
  21. font-size: 20px;
  22. margin-top: 30px;
  23. color: inherit;
  24. text-decoration: none;
  25. }
  26. #offline {
  27. display: block;
  28. text-align: center;
  29. }
  30. </style>
  31. </head>
  32. <body>
  33. <div id='offline'>
  34. <h1>No internet connection</h1>
  35. <p>You appear to be offline. An internet connection is required to login to the Projucer.</p>
  36. <p>If you want to use JUCE under the GPL without signing-in, you can enable the pre-processor macro JUCER_ENABLE_GPL_MODE=1 and recompile the Projucer yourself.</p>
  37. <a class='button' href='__URL_PLACEHOLDER__'>Try again</a>
  38. </div>
  39. </body>
  40. </html>