29 lines
731 B
HTML
29 lines
731 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>Hello World!</title>
|
|
</head>
|
|
<body>
|
|
<h1>Hello World!</h1>
|
|
Nous utilisons Node.js <span id="node-version"></span>,
|
|
Chromium <span id="chrome-version"></span>,
|
|
et Electron <span id="electron-version"></span>.
|
|
<div> IPC RENDER : <div id="info"></div></div>
|
|
<script src="./renderer.js"></script>
|
|
<table id="deviceList">
|
|
<thead>
|
|
<tr>
|
|
<th>
|
|
DeviceName
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="deviceNameBody">
|
|
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html> |