Form:설문조사

Admin (토론 | 기여)님의 2024년 7월 14일 (일) 12:56 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

Edit form


<form> {

   "format": "json",
   "title": "설문조사",
   "fields": [
       {
           "type": "radio",
           "name": "Favorite color",
           "label": "What is your favorite color?",
           "values": ["Red", "Blue", "Green", "Yellow"]
       },
       {
           "type": "textarea",
           "name": "Feedback",
           "label": "약간 불편한 점을 적어주세요:"
       }
   ],
   "actions": [
       {
           "type": "submit",
           "label": "제출"
       }
   ]

} </form>