From bf706377173d1c88679d719188a162e31f628ae1 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Tue, 2 Jul 2024 18:34:31 +0200 Subject: [PATCH] Demo form satisfies to choicesp and questionp --- src/views/forms/en/demo.lisp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/views/forms/en/demo.lisp b/src/views/forms/en/demo.lisp index 9a19440..1072b58 100644 --- a/src/views/forms/en/demo.lisp +++ b/src/views/forms/en/demo.lisp @@ -3,13 +3,17 @@ (multi-form (:ask "What is your age range?" :group "demo-age-range" + :style "list-style-type:none" :choices (:single "18-24" "25-34" "35-44" "45-54" "55+")) (:ask "What is your gender?" :group "demo-gender" + :style "list-style-type:none" :choices (:single "Male" "Female" "Non-binary" "Prefer not to say" "Other" :text "Other")) (:ask "What is your profession?" :group "demo-profession" + :style "list-style-type:none" :choices (:text "Profession")) (:ask "What is your educational background?" :group "demo-edu" + :style "list-style-type:none" :choices (:text "Last Degree")))