4b45ecea87
* initial winrt work * Add new vid/pid * E2E working * Remove wrong hid selector
25 lines
795 B
HTML
25 lines
795 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Oops!</title>
|
|
<link href="msapp-error.css" rel="stylesheet" type="text/css" />
|
|
<script src="msapp-error.js" type="text/javascript"></script>
|
|
</head>
|
|
<body>
|
|
<h1>Oops! Please connect to the Internet.</h1>
|
|
<button id="retryButton">Retry</button>
|
|
<div id="failureUrl" class="param">
|
|
<span class="paramName">URL:</span>
|
|
<span id="failureUrlValue" class="paramValue"></span>
|
|
</div>
|
|
<div id="httpStatus" class="param">
|
|
<span class="paramName">HTTP status:</span>
|
|
<span id="httpStatusValue" class="paramValue"></span>
|
|
</div>
|
|
<div id="failureName">
|
|
<span class="paramName">Failure name:</span>
|
|
<span id="failureNameValue" class="paramValue"></span>
|
|
</div>
|
|
</body>
|
|
</html>
|