-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (60 loc) · 1.91 KB
/
index.html
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!doctype html>
<html>
<head>
<title>FileSafr</title>
<link rel="stylesheet" href="stylesheets/bootstrap.css" />
<link rel="stylesheet" href="stylesheets/bootstrap-responsive.css" />
<link rel="stylesheet" href="stylesheets/application.css" />
<script src="vendor/vendorjs.js"></script>
<script src="vendor/require-jquery.js" data-main="src/main"></script>
<script src="vendor/bootstrap.js"></script>
</head>
<body>
<div class="container">
<script type="text/x-handlebars">
<h1>FileSafr</h1>
<!--{{view FileSafr.ProgressBar valueBinding="FileSafr.Application.progressValue"}}-->
</script>
<h2>Downloads in progress</h2>
<table class="table">
<thead>
<tr>
<th>Name</th>
<th>Status</th>
<th>KB/s</th>
<th>Size</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<td>my_video.avi</td>
<td><progress max="1" value="0.6"></progress></td>
<td>120.4</td>
<td>450 MB</td>
<td>
<a class="btn btn-small"><i class="icon-pause"></i></a>
<a class="btn btn-small"><i class="icon-remove-sign"></i></a>
</td>
</tr>
</tbody>
</table>
<div class="well">
<a href="test/index.html" class="btn btn-info">Go to test suite</a>
</div>
</div>
<script type="text/javascript">
var _gauges = _gauges || [];
(function() {
var t = document.createElement('script');
t.type = 'text/javascript';
t.async = true;
t.id = 'gauges-tracker';
t.setAttribute('data-site-id', '4f4d50cc613f5d4e20000240');
t.src = 'https://secure.gaug.es/track.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(t, s);
})();
</script>
</body>
</html>