EVAG API interaction library using HTML components.
ec-html
==
evag.io API interaction library using HTML components.
Install using npm (or yarn or anything):
```
$ npm install @evag/ec-html
Create a HTML form with data-evag attributes:
` Thank you for submitting the form!html`
Use @evag/ec-html to handle forms:
`js
import ec from '@evag/ec-html';
window.addEventListener('load', () => {
document.querySelectorAll('[data-evag="form"]').forEach(ec.forms.setup);
});
`
Read src/forms.js` JSDoc for more information.