Use progress bar from bootstrap for the upload
[oweals/peertube.git] / client / index.html
1 <html>
2   <head>
3     <base href="/">
4
5     <title>PeerTube</title>
6
7     <meta charset="UTF-8">
8     <meta name="viewport" content="width=device-width, initial-scale=1">
9
10     <link rel="stylesheet" href="/app/stylesheets/index.css">
11
12     <!-- 1. Load libraries -->
13     <!-- IE required polyfills, in this exact order -->
14     <script src="/app/node_modules/es6-shim/es6-shim.min.js"></script>
15     <script src="/app/node_modules/zone.js/dist/zone.js"></script>
16     <script src="/app/node_modules/reflect-metadata/Reflect.js"></script>
17     <script src="/app/node_modules/systemjs/dist/system.src.js"></script>
18
19     <script src="/app/node_modules/jquery/dist/jquery.js"></script>
20     <script src="/app/node_modules/jquery.ui.widget/jquery.ui.widget.js"></script>
21     <script src="/app/node_modules/blueimp-file-upload/js/jquery.fileupload.js"></script>
22
23     <script src="/app/node_modules/webtorrent/webtorrent.min.js"></script>
24
25     <!-- 2. Configure SystemJS -->
26     <script src="/app/systemjs.config.js"></script>
27     <script>
28       System.import('app').catch(function(err){ console.error(err); });
29     </script>
30   </head>
31
32   <!-- 3. Display the application -->
33   <body>
34     <my-app>Loading...</my-app>
35   </body>
36 </html>