Add Broken Url Report functionality

This commit is contained in:
Alezia Kurdis 2021-02-27 00:34:51 -05:00 committed by GitHub
parent 608fe21045
commit 6e3ab17079
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,68 @@
<!DOCTYPE html>
<!--//
// brokenUrlReport.html
//
// Created by Alezia Kurdis on February 22, 2021.
// Copyright 2021 Vircadia contributors.
//
// Distributed under the Apache License, Version 2.0.
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
//-->
<html>
<head>
<meta charset="utf-8" />
<style>
body{
background-color:#000000;
color:#ffffff;
font-family: Helvetica, Arial, Sans-Serif;
font-weight: 700;
font-size: 12px;
text-align: center;
width: 100%;
}
h1{
font-size: 18px;
font-weight: 900;
}
table{
text-align: left;
width:96%;
border: 1px solid #DDDDDD;
border-collapse: collapse;
}
td{
border: 1px solid #DDDDDD;
padding: 3px;
}
td.superheader{
font-size: 18px;
text-align: center;
font-weight: 900;
background-color:#999999;
}
td.header{
font-weight: 900;
background-color:#777777;
}
</style>
</head>
<body>
<div id="report">
<div style='text-align: center; width: 100%;'>
<h1>
<br>
<br>
Testing in progress...
</h1>
<br>
<img src='../assets/images/processing.gif'>
</div>
</div>
</body>
<script>
EventBridge.scriptEventReceived.connect(function (message) {
document.getElementById("report").innerHTML = message;
});
</script>
</html>