-
Notifications
You must be signed in to change notification settings - Fork 31
/
index.html
48 lines (45 loc) · 1.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Qafoo Quality Analyzer</title>
<link href="assets/bundle.css" rel="stylesheet">
<link rel="icon" href="assets/favicon.png" type="image/png" />
</head>
<body>
<div id="content">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<h1>Qafoo Quality Analyzer</h1>
<p class="text-danger" id="error"></p>
<div class="well">
<p>
<span class="glyphicon glyphicon-hourglass"></span>
Initializing application…
</p>
</div>
</div>
</div>
</div>
</div>
<footer>
<div class="container">
Developed by <img src="assets/qafoo.png" width="16" height="16"><a href="https://qafoo.com">Qafoo</a> /
Get on <a href="https://github.com/Qafoo/QualityAnalyzer">Github</a> /
Licensed under <a href="https://www.gnu.org/licenses/agpl-3.0.en.html">AGPL v3</a>
</div>
</footer>
<script>
// Generic error handling so we can see when the application is not correctly initialized
window.onerror = function(error, file, line) {
if (document.getElementById("error")) {
document.getElementById("error").textContent = file + " +" + line + ": " + error;
}
};
</script>
<script src="assets/bundle.js"></script>
</body>
</html>