-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·59 lines (55 loc) · 2.8 KB
/
index.html
File metadata and controls
executable file
·59 lines (55 loc) · 2.8 KB
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
<!DOCTYPE html>
<html lang="de">
<!--
/**
* [CARO - Cloud Assisted Records and Operations](https://github.com/erroronline1/caro)
* Copyright (C) 2023-2025 error on line 1 (dev@erroronline.one)
*
* This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or any later version.
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
* You should have received a copy of the GNU Affero General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
* Third party libraries are distributed under their own terms (see [readme.md](readme.md#external-libraries))
*/
-->
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link type="text/css" href="light.css" id="csstheme" rel="stylesheet" />
<link type="text/css" href="style.css" rel="stylesheet" />
<link type="text/css" href="./vendor/TLN/tln.min.css" rel="stylesheet" />
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<link rel="icon" sizes="48x48" href="favicon.ico" />
<meta name="theme-color" content="#E5E9F0" />
<link rel="manifest" href="./site.webmanifest" />
<title>CARO</title>
</head>
<script src="./js/initializeCARO.js" type="module"></script>
<script src="./vendor/erroronline1.js" type="text/javascript"></script>
<script src="./vendor/html5-qrcode.min.mod.js" type="text/javascript"></script>
<script src="./vendor/JsBarcode.all.min.js" type="text/javascript"></script>
<script src="./vendor/viewstl/stl_viewer.min.js" type="text/javascript"></script>
<script src="./vendor/signature_pad.umd.min.js" type="text/javascript"></script>
<script src="./vendor/TLN/tln.min.js"type="text/javascript" ></script>
<body>
<nav></nav>
<header>
<!-- nth-of-type 1: toggle fullscreen -->
<div aria-hidden="true" onclick="_client.application.toggleFullScreen()"></div>
<h1></h1>
<!-- nth-of-type 2: service worker not registered -->
<div aria-hidden="true"></div>
<!-- nth-of-type 3: server connection loss -->
<div aria-hidden="true"></div>
<!-- nth-of-type 4: session expired -->
<div aria-hidden="true"></div>
<svg aria-hidden="true" class="session-timeout" viewbox="0 0 30 30">
<circle class="session-timeout__circle" stroke-width="2" fill="transparent" r="13" cx="15" cy="15" />
</svg>
<!-- last-of-type: scoll process -->
<div aria-hidden="true"></div>
</header>
<main id="main"></main>
<div class="loader" aria-hidden="true"></div>
</body>
</html>