mirror of
https://github.com/Viren070/AIOStreams.git
synced 2025-12-01 23:14:04 +01:00
6 lines
274 B
JavaScript
6 lines
274 B
JavaScript
document.getElementById('configForm').addEventListener('submit', function(event) {
|
|
event.preventDefault();
|
|
const apiKey = document.getElementById('apiKey').value;
|
|
alert(`API Key submitted: ${apiKey}`);
|
|
// You can add more logic here to handle the form submission
|
|
}); |