CoolFace
Apppublic

Mythus/Staging

sourceHugging Faceupdated 3y agoView on Hugging Face
0likes
index.html30 linesDownload Raw Back to electron
1<html>2  <head>3    <title>Teledrive</title>4    <link rel="stylesheet" href="assets/css/style.css" />5    <!-- <link rel="stylesheet" href="assets/css/topbar.css" />-->6    <link rel="stylesheet" href="assets/css/no-topbar.css">7    <script defer src="assets/js/renderer.js"></script>8    <meta9      http-equiv="Content-Security-Policy"10      content="default-src 'self'; style-src 'self' 'unsafe-inline';"11    />12  </head>13  <body>14    <!-- for later15    <div id="controls">16      <button id="home" title="Dashboard">Dashboard</button>17     18    </div>19 -->20 21    <!-- Webview -->22    <webview23      id="webview"24      autosize="on"25      src="https://teledriveapp.herokuapp.com/startup"26      data-home="https://teledriveapp.herokuapp.com/startup"27    ></webview>28  </body>29</html>30