Roughly setup html and some basic javascript. I'm probably going to redo most of this though.

This commit is contained in:
dan
2022-01-19 23:37:03 -05:00
parent f635ca6958
commit fa58df3f43
7 changed files with 96 additions and 3 deletions

12
static/scripts.js Normal file
View File

@@ -0,0 +1,12 @@
function updateAlerts() {
var text = document.querySelector('#alert_text');
var email = document.querySelector('#alert_email');
alert(text.checked);
alert(email.checked);
fetch('/updateAlerts')
}
function updateFeed() {
return null;
}