20 lines
545 B
HTML
20 lines
545 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Enter API Key</title>
|
|
<link rel="stylesheet" href="css/styles.css">
|
|
</head>
|
|
<body>
|
|
<h1>Enter API Key</h1>
|
|
<input type="text" id="apiKeyInput" placeholder="API Key">
|
|
<button id="submitApiKey">Submit</button>
|
|
<script>
|
|
const { ipcRenderer } = require('electron');
|
|
|
|
document.getElementById('submitApiKey').addEventListener('click', () => {
|
|
const apiKey = document.getElementById('apiKeyInput').value;
|
|
ipcRenderer.send('submit-api-key', apiKey);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |