A minimal form that collects user data and stores it in SQLite.
main.ts - HTTP val with form and submission handlingdb.ts - SQLite database operationsVisit the HTTP endpoint to see the form. Submit name and email to store in database.
Data is stored in form_submissions table with columns:
id (auto-increment)nameemailcreated_at (timestamp)