adding quicklisp and sbcl to add parenscript possibly

These are all just testing pieces but possible changes to add
This commit is contained in:
Chris Cochrun 2023-05-25 09:26:06 -05:00
parent cb9f3ca324
commit 4242f0d05a
9 changed files with 1888 additions and 69 deletions

File diff suppressed because one or more lines are too long

13
static/js/health-form.js Normal file
View file

@ -0,0 +1,13 @@
defpackage(tfcconnection, 'use'(ps));
function submitForm() {
console.log('hello world');
var form13 = document.getElementById('form');
var data = new FormData(form);
__PS_MV_REG = [];
return console.log(form13);
};
function validate(data) {
console.log('validating');
__PS_MV_REG = [];
return data.get('tetanus-shot') === '' ? console.warn('NO DATE FOR TETANUS SHOT') : data.set('tetanus-shot', '1111-11-11');
};