File: offlinepage.html

package info (click to toggle)
juce 5.4.1%2Breally5.4.1~repack-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 45,912 kB
  • sloc: cpp: 359,335; java: 15,402; ansic: 796; xml: 243; sh: 192; makefile: 146; cs: 132; python: 117
file content (42 lines) | stat: -rw-r--r-- 1,155 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<html>
  <head>
    <meta http-equiv="X-UA-Compatible" content="IE=11">
    <style>
      body {
        background-color: #f1f1f1;
        color: #101010;
        font-family: Helvetica, Arial, sans-serif;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .button {
        display: block;
        padding: 15px 20px 16px;
        width: 200px;
        border: 1px solid #c8c9cb;
        border-radius: 6px;
        margin: auto;
        cursor: pointer;
        font-size: 20px;
        margin-top: 30px;
        color: inherit;
        text-decoration: none;
      }
      #offline {
        display: block;
        text-align: center;
      }
    </style>
  </head>
  <body>
    <div id='offline'>
      <h1>No internet connection</h1>

      <p>You appear to be offline. An internet connection is required to login to the Projucer.</p>
      <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>

      <a class='button' href='__URL_PLACEHOLDER__'>Try again</a>
    </div>
  </body>
</html>