mirror of
https://github.com/arc53/DocsGPT.git
synced 2025-11-29 16:43:16 +00:00
Api key via web interface
This commit is contained in:
15
application/static/src/authapi.js
Normal file
15
application/static/src/authapi.js
Normal file
@@ -0,0 +1,15 @@
|
||||
function resetApiKey() {
|
||||
document.getElementById('modal').classList.toggle('hidden')
|
||||
}
|
||||
|
||||
|
||||
var el2 = document.getElementById('api-key-form');
|
||||
if (el2) {
|
||||
el2.addEventListener("submit", function (event) {
|
||||
event.preventDefault()
|
||||
var apiKey = document.getElementById("api-key-input").value;
|
||||
document.getElementById('modal').classList.toggle('hidden')
|
||||
localStorage.setItem('apiKey', apiKey)
|
||||
document.getElementById('api-key-input').value = ''
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user