aboutsummaryrefslogtreecommitdiffstats
path: root/static/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/main.js')
-rw-r--r--static/main.js16
1 files changed, 16 insertions, 0 deletions
diff --git a/static/main.js b/static/main.js
new file mode 100644
index 0000000..8e8b87c
--- /dev/null
+++ b/static/main.js
@@ -0,0 +1,16 @@
+
+async function post(url, data) {
+ const params = {
+ method: "POST",
+ headers: {
+ 'Content-Type': 'application/json'
+ },
+ body: JSON.stringify(data),
+ };
+
+ let response = await fetch(url, params);
+ if (!response.ok) {
+ const text = await response.text();
+ alert(`Error Sending: ${response.statusText} ${text}`);
+ }
+}