-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelectron.html
38 lines (35 loc) · 1.29 KB
/
electron.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>lstsim-commander</title>
<link rel="stylesheet" href="http://localhost:3000/css/bootstrap.min.css" />
</head>
<body class="d-flex flex-column h-100">
<header>
<!-- Fixed navbar -->
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark mb-5">
<a class="navbar-brand" href="">LstSim Commander</a>
</nav>
</header>
<!-- Begin page content -->
<main role="main" class="flex-shrink-0 mt-5">
<div class="container">
<div class="row">
<div class="col-12">
<a href="http://localhost:3000" class="btn btn-primary mt-3" id="openweb">Commander öffnen</a>
<p>Die Weboberfläche ist unter <span id="weburl">...</span> erreichbar.</p>
</div>
<div class="col-12">
<a href="http://localhost:3000/install" class="btn btn-primary mt-3" id="openinstall">Browsererweiterung installieren</a>
<p>Wird benötigt um Anrufe und Uhrzeit von lstsim abzufragen.</p>
</div>
<div class="col-12">
<p id="version"></p>
</div>
</div>
</div>
</main>
</body>
</html>