-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
47 lines (46 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="This is an simple Online Viewer for SOR
Files (Standard OTDR Record- Telcordia SR-4731, issue 2 standard). This
data Format ist used to store OTDR fiber data. "
/>
<meta name="keywords" content="SOR, OTDR, SR-4731, viewer" />
<meta name="author" content="Marco Moosler" />
<title>SOR Viewer</title>
</head>
<body>
<div id="header"><h1>Online SOR-Viewer</h1></div>
<div id="flashMessage">
<div id="message"></div>
<span class="closebtn" onclick="this.parentElement.style.display='none';"
>×</span
>
</div>
<div class="grid-container">
<div class="File-Select" id="File-Input">
<form action="#" onsubmit="return false;">
<input type="file" id="fileinput" accept=".sor,.SOR" />
<input type="button" id="btnLoad" value="Load" />
</form>
</div>
<div class="Chart" id="chartContainer" style="height: 400px">
<h3>Chart:</h3>
</div>
<div class="Props" id="result">
<h3>Properties</h3>
</div>
<div class="Events" id="event-sum"></div>
</div>
<div id="footer">
<a href="mailto:[email protected]"> Marco Moosler </a>2022
</div>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>