File size: 785 Bytes
d8cfa7c |
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 |
<html>
<head>
<title>Teledrive</title>
<link rel="stylesheet" href="assets/css/style.css" />
<!-- <link rel="stylesheet" href="assets/css/topbar.css" />-->
<link rel="stylesheet" href="assets/css/no-topbar.css">
<script defer src="assets/js/renderer.js"></script>
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; style-src 'self' 'unsafe-inline';"
/>
</head>
<body>
<!-- for later
<div id="controls">
<button id="home" title="Dashboard">Dashboard</button>
</div>
-->
<!-- Webview -->
<webview
id="webview"
autosize="on"
src="https://teledriveapp.herokuapp.com/startup"
data-home="https://teledriveapp.herokuapp.com/startup"
></webview>
</body>
</html>
|