The official public website for FireForm — a UN-recognized Digital Public Good and 1st Place Winner of the Reboot the Earth Hackathon, hosted by the United Nations and UC Santa Cruz.
This repository contains the static website only. For the desktop application source code, see the main FireForm repository.
FireForm is an open-source, AI-powered system built to solve administrative overhead for first responders. When a firefighter responds to an incident, they are typically required to file the same report to multiple agencies — county sheriff, local police, emergency medical services — each using their own unique forms. This forces firefighters to spend hours at the end of their shift re-entering the same information, taking them away from critical duties.
FireForm solves this with a "report once, file everywhere" approach:
- A firefighter records a single voice memo or fills out one master field describing the incident.
- An open-source, locally-run LLM (Mistral via Ollama) extracts all key information into a structured JSON file.
- FireForm uses that single JSON object to automatically populate every required PDF template for all relevant agencies.
The result is hours saved per shift, per firefighter — with no data ever leaving the local machine.
This is a plain HTML/CSS static site serving as the public-facing presence for the FireForm project.
| File | Description |
|---|---|
index.html |
Main landing page with project overview and download links for macOS, Windows, and Linux |
dpg.html |
FireForm's Digital Public Good certification and UN Sustainable Development Goal (SDG) relevance |
privacy.html |
Full privacy policy detailing FireForm's local-first, offline data handling and compliance with HIPAA, CCPA, and GDPR |
terms.html |
Terms of service |
styles.css |
Shared stylesheet across all pages |
No build step is required — this is a plain static site.
# Clone the repository
git clone https://github.com/fireform-core/fireform-website.git
cd fireform-website
# Open directly in your browser
open index.htmlTo serve it with a local HTTP server (recommended to avoid font/asset CORS issues):
npx serve .
# or
python3 -m http.server 8080The site is deployed via GitHub Pages from the main branch. Every push to main is reflected on the live site automatically. No CI pipeline or build process is needed.
The live site is linked from the main FireForm repository as the canonical source for DPG documentation, the privacy policy, and terms of service.
Contributions to the website (copy improvements, accessibility fixes, new pages) are welcome. Please read the Contributing Guide and Code of Conduct in the main repository before submitting a pull request.
This project is licensed under the MIT License. See LICENSE for details.