af23me / step-survey-html-template

Simple step survey HTML template

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Description

Simple HTML markup for step survey with output as object.

Demo link

Preview

Incoming data format

[
  {
    description: "How often you use such surveys?",
    answers: [
      "Often",
      "Not really"
    ]
  },
  {
    description: "Please tell your expirience using this form",
    answers: [
      "Really cool",
      "Should be improved"
    ]
  }
]

Output data format

{
  name: "Test user",
  phone: "12345678",
  answers: {
    1: "First selected answer",
    2: "Second selected answer"
  }
}

About

Simple step survey HTML template

License:MIT License


Languages

Language:CSS 48.9%Language:JavaScript 34.1%Language:HTML 17.0%