https://github.com/knowler/resilient-forms-example
An example of a form that saves its state locally if it can’t submit.
https://github.com/knowler/resilient-forms-example
Last synced: 10 months ago
JSON representation
An example of a form that saves its state locally if it can’t submit.
- Host: GitHub
- URL: https://github.com/knowler/resilient-forms-example
- Owner: knowler
- Created: 2019-06-05T17:50:46.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-05T22:30:26.000Z (about 7 years ago)
- Last Synced: 2025-03-13T16:16:53.514Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://resilient-forms.netlify.com
- Size: 109 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Resilient Form Example
A technique for writing forms which allow for saving progress
locally. If the network loses connection and the form is
submitted, the form will save its state locally as well. This
means that users can continue filling out a form and not worry
if they lose connection.
This example uses:
* Preact as the frontend
* Informed as a form controller
* `idb-keyval` for storing key/values to IndexedDb
* Emotion + Styled System (Babel plugin)