Files
airshipui/web/index.html
Schiefelbein, Andrew 37be06e6dc [WIP] transform airship ui into a standalone electron app
Removing octant reference for now, it will need to be
later embedded into the ui

Working on this will require these commands to be run in
the web directory:
npm install
npm install --save-dev electron

behind a proxy npm install may have issues, this might work:
npx cross-env ELECTRON_GET_USE_PROXY=true GLOBAL_AGENT_HTTPS_PROXY=
http://<proxy>:<port> npm install -D electron@latest

Change-Id: I5bd054a767fe8ab7b0461a16eced1921c4de11f6
2020-04-30 08:54:09 -05:00

34 lines
1.2 KiB
HTML
Executable File

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Airship UI</title>
<meta name="description"
content="Airship User Interface. Copyright (c) 2020 AT&T. All Rights Reserved. SPDX-License-Identifier: Apache-2.0">
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
<script src="js/websocket.js"></script>
<script src="js/common.js"></script>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="HeaderDiv" class="topnav">
<div id="HeaderNameDiv" class="topnavsuite">Airship UI</div>
&nbsp;&nbsp;&nbsp;&nbsp;<a href="#" id="HomeLink">Home</a>
&nbsp;&nbsp;&nbsp;&nbsp;<a href="#" id="PluginsLink">Plugins</a>
<div id="NameDiv" class="topnavname"></div>
</div>
<div class="container" id="MainDiv" style="width:98%">
<h1>TODO: Airship integration</h1>
</div>
<div id="FooterDiv">
</br>
<center><img src="images/airship-color.png" width="100px" height="67px"></center>
<center>
<p><div class="tooltip">&copy; The Airship Authors.<span class="tooltiptext">https://wiki.openstack.org/wiki/Airship</span></div> All Rights Reserved.</p>
</center>
</div>
</body>
</html>