Show a message on client when JavaScript is disabled (#200)
[oweals/peertube.git] / client / src / index.html
1 <!DOCTYPE html>
2 <html>
3   <head>
4     <title>PeerTube</title>
5
6     <meta charset="UTF-8">
7     <meta name="viewport" content="width=device-width, initial-scale=1">
8     <meta name="description" content="PeerTube, a decentralized video streaming platform using P2P (BitTorrent) directly in the web browser" />
9
10     <!-- The following comment is used by the server to prerender OpenGraph and oEmbed tags -->
11     <!-- open graph and oembed tags -->
12     <!-- Do not remove it! -->
13
14     <link rel="icon" type="image/png" href="/client/assets/images/favicon.png" />
15
16     <!-- base url -->
17     <base href="/">
18   </head>
19
20   <!-- 3. Display the application -->
21   <body>
22
23     <noscript>
24       <p>You are blocking Javascript, and we totally get that. However this endpoint uses Angular, so the front end is in full JavaScript and won't work without it.
25       </br></br>
26       There will be other non JS-based clients to access PeerTube, but for now none is available as this is still alpha software. Be sure we will update this page with a list once alternative clients are developped. You can certainly develop you own in the meantime as our code is open source and libre software under GNU AGPLv3.0.
27       </br></br>
28       There might be numerous reasons you refuse to use JavaScript. If it has just to do with security (or lack thereof) of JavaScript-based webapps, then depending on your threat menace you might want to go through the code running on the node you are trying to access, and look for security audits.
29       </p>
30     </noscript>
31
32     <my-app>
33     </my-app>
34
35   </body>
36 </html>