forked from PharmaLedger-IMI/lightweightPWA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.html
25 lines (22 loc) · 784 Bytes
/
error.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
<head>
<link href="css/main.css" rel="stylesheet">
<script src="./js/controllers/ErrorController.js" type="module"></script>
<title>PharmaLedger</title>
</head>
<body>
<div class="page-container error-page">
<div class="page-header">
<span class="header-title" translate="error_title"></span>
<span class="header-subtitle" translate="error_subtitle"></span>
</div>
<div class="page-content">
<div class="error-text" translate="error_text">
</div>
<div class="scan-button" onclick="errorController.scanAgainHandler()" translate="scan_again"></div>
</div>
</div>
</body>
<script type="module">
import {translate} from "./js/translations.js";
document.getElementsByTagName("body").onload = translate()
</script>