30 lines
862 B
HTML
30 lines
862 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>VE.Direct web-UI</title>
|
|
<link rel="stylesheet" href="main.css">
|
|
<script type="text/javascript" src="main.js"></script>
|
|
</head>
|
|
|
|
<body onload="initialize()">
|
|
<div class="container">
|
|
<div class="productList" id="productList">
|
|
<div class="padding bright" id="liDashboard">🏠 Dashboard</div>
|
|
</div>
|
|
|
|
<div class="mainView dashboard" id="dashboard">
|
|
<h1>Dashboard</h1>
|
|
</div>
|
|
<div class="mainView deviceDetails" id="deviceDetails">
|
|
<img id="deviceDetailsProductImage">
|
|
<h1>Details <span id="deviceDetailsName"></span></h1>
|
|
<div id="deviceDetailsSN"></div>
|
|
</div>
|
|
</div><!-- end of container -->
|
|
</bod>
|
|
|
|
<footer>
|
|
<div>This is the <a href="https://git.schauaus.at/VE-Tools/VE.Direct-webui" target="_blank">VE.Direct web-UI</a> by SCHAUAUS GmbH.</div>
|
|
</footer>
|
|
</html>
|