Update settings.html
Browse files- settings.html +5 -1
settings.html
CHANGED
@@ -31,6 +31,9 @@
|
|
31 |
<label for="curators">curators:</label>
|
32 |
<input type="text" id="curators" name="curators"><br><br>
|
33 |
|
|
|
|
|
|
|
34 |
|
35 |
|
36 |
<button type="button" onclick="saveSettings()">Save</button>
|
@@ -50,7 +53,8 @@
|
|
50 |
document.getElementById('senler_token').value = data.senler_token;
|
51 |
document.getElementById('wa_ak').value = data.wa_ak;
|
52 |
document.getElementById('wa_api_key').value = data.wa_api_key;
|
53 |
-
document.getElementById('curators').value = data.curators;
|
|
|
54 |
})
|
55 |
.catch(error => console.error('Error:', error));
|
56 |
}
|
|
|
31 |
<label for="curators">curators:</label>
|
32 |
<input type="text" id="curators" name="curators"><br><br>
|
33 |
|
34 |
+
<label for="call_api_key">call_api_key:</label>
|
35 |
+
<input type="text" id="call_api_key" name="call_api_key"><br><br>
|
36 |
+
|
37 |
|
38 |
|
39 |
<button type="button" onclick="saveSettings()">Save</button>
|
|
|
53 |
document.getElementById('senler_token').value = data.senler_token;
|
54 |
document.getElementById('wa_ak').value = data.wa_ak;
|
55 |
document.getElementById('wa_api_key').value = data.wa_api_key;
|
56 |
+
document.getElementById('curators').value = data.curators;
|
57 |
+
document.getElementById('call_api_key').value = data.call_api_key;
|
58 |
})
|
59 |
.catch(error => console.error('Error:', error));
|
60 |
}
|