mirror of https://github.com/electron/electron
15 lines
430 B
HTML
15 lines
430 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'">
|
|
<title>Dialog</title>
|
|
</head>
|
|
<body>
|
|
<button type="button" id="btn">Open a File</button>
|
|
File path: <strong id="filePath"></strong>
|
|
<script src='./renderer.js'></script>
|
|
</body>
|
|
</html>
|