index.html 430 B

1234567891011121314
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
  6. <meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
  7. <title>Dialog</title>
  8. </head>
  9. <body>
  10. <button type="button" id="btn">Open a File</button>
  11. File path: <strong id="filePath"></strong>
  12. <script src='./renderer.js'></script>
  13. </body>
  14. </html>