Public
Like
town-hall
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
Viewing readonly version of main branch: v15View latest version
A simple, animated form for collecting speaker applications for the Val Town Hall event.
- Clean, modern form with subtle animations
- SQLite database storage for all submissions
- Email notifications for new submissions
- Mobile-responsive design
- Client-side validation
/index.ts
- Main HTTP handler with form submission endpoint/frontend/index.html
- Main HTML page with the form/frontend/style.css
- CSS styling and animations/frontend/script.js
- JavaScript for form handling and animations
- The form collects speaker information including name, email, Val Town username, company (optional), website (optional), and talk description.
- On submission, the data is sent to the server endpoint.
- The server validates the data, stores it in SQLite, and sends an email notification.
- A thank you message is displayed to the user upon successful submission.
CREATE TABLE IF NOT EXISTS val_town_hall_speakers ( id INTEGER PRIMARY KEY AUTOINCREMENT, name TEXT NOT NULL, email TEXT NOT NULL, username TEXT NOT NULL, company TEXT, website TEXT, talk_description TEXT NOT NULL, created_at TEXT NOT NULL )
Email notifications are sent in plain text format and include all the information submitted through the form.