ilovetea / netlify-one-click

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Example of using VGS as a netlify addon

First to all you need to create your site and deploy to netlify.

  1. Click Deploy to netlify button
  2. Install netlify-cli. Netlify docs https://www.netlify.com/docs/cli/
  3. Run netlify addons:create vgs from your site's directory.
  4. Run netlify addons:auth vgs, to authenticate and give addon access to your VGS account.
  5. Then, follow interactive guide.

Example of form

<form name="contact" method="post" netlify-honeypot="b" autocomplete="off" netlify secure>
  <p>
    <label for="name">Basic Field</label>
    <input type="text" name="name" id="name" />
  </p>
    
  <p>
    <label for="ssn">Secure Field</label>
    <input type="text" name="secure" data-secure-field />
  </p>
  <p>
    <button type="submit" id="submit">Send</button>
  </p>
</form>

About


Languages

Language:HTML 100.0%