# KICKZ Emarsys Forms

![NPM version](https://img.shields.io/npm/v/@eddybrando.vasquez/kickz-emarsys-forms.svg)
![License](https://img.shields.io/github/license/eddybrando/kickz-emarsys-forms.svg)
![Build status](https://img.shields.io/travis/eddybrando/kickz-emarsys-forms/master.svg)
![Size](https://img.shields.io/github/size/eddybrando/kickz-emarsys-forms/dist/index.js.svg)
![Open GitHub issues](https://img.shields.io/github/issues-raw/eddybrando/kickz-emarsys-forms.svg)
[![CDN hits](https://data.jsdelivr.com/v1/package/npm/@eddybrando.vasquez/kickz-emarsys-forms/badge)](https://www.jsdelivr.com/package/npm/@eddybrando.vasquez/kickz-emarsys-forms)

KICKZ custom implementation to support Emarsys API forms

## Installing

### Using CDN

This is most likely the option you're looking for.

To import a ready-to-use version directly from the CDN, use one of the following imports.

#### Specific version

```html
<script src="https://cdn.jsdelivr.net/npm/@eddybrando.vasquez/kickz-emarsys-forms@1.0.0"></script>
```

#### Latest patch version (recommended)

In order to leverage automatic patches, ignore the last version number:

```html
<script src="https://cdn.jsdelivr.net/npm/@eddybrando.vasquez/kickz-emarsys-forms@1.0"></script>

```
#### Latest minor version

To live on the edge and get also the most recent features automatically, ignore the last two version numbers:

```html
<script src="https://cdn.jsdelivr.net/npm/@eddybrando.vasquez/kickz-emarsys-forms@1"></script>
```

#### Latest major version

If you're completely edgy and insane, use the latest version always, which also contains breaking changes:

```html
<script src="https://cdn.jsdelivr.net/npm/@eddybrando.vasquez/kickz-emarsys-forms@latest"></script>
```

**Do not use this on a production application!** Breaking changes means it'll most certainly break things without asking first for permission.

### Using npm

```bash
npm install @eddybrando/kickz-emarsys-forms
```

### Using yarn

```bash
yarn add @eddybrando/kickz-emarsys-forms
```
