From 87874d0f34eadf158d0eb783cd955417e2cc0e9e Mon Sep 17 00:00:00 2001 From: Reef Date: Thu, 20 Aug 2026 15:22:38 +0000 Subject: [PATCH] feat: add checkboxes and update webhook for business wizard - Add 3 checkboxes between textareas and submit button: - I already have a homepage (bizHasHomepage) - I already use ODOO (bizUsesOdoo) - I already have a developer for modules (bizHasDeveloper) - POST to /webhook/report instead of old webhook UUID - Include checkbox boolean values in request body - Add .biz-checkbox-group and .biz-checkbox CSS (inline + external) --- index.html | 9 +++++++++ script.js | 11 +++++++++-- style.css | 26 ++++++++++++++++++++++++++ 3 files changed, 44 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 1eddc53..8843182 100644 --- a/index.html +++ b/index.html @@ -86,6 +86,10 @@ .biz-field textarea:focus{border-color:var(--brass);background:rgba(255,255,255,.08)} .biz-field textarea::placeholder{color:rgba(255,255,255,.3)} .biz-form .btn-lg{margin-top:.5rem;width:100%} + .biz-checkbox-group{display:flex;flex-direction:column;gap:.6rem;margin-bottom:1rem} + .biz-checkbox{display:flex;align-items:center;gap:.6rem;font-family:Inter,sans-serif;font-size:.85rem;color:rgba(255,255,255,.75);cursor:pointer;user-select:none;transition:color .2s} + .biz-checkbox:hover{color:#fff} + .biz-checkbox input[type="checkbox"]{width:1.05rem;height:1.05rem;accent-color:var(--brass);cursor:pointer;flex-shrink:0} .biz-success{margin-top:1.5rem}.biz-success i{font-size:2.5rem;color:var(--success);margin-bottom:.75rem} .biz-success h3{color:#fff;margin-bottom:.5rem}.biz-success p{color:rgba(255,255,255,.65);font-size:.95rem;max-width:480px;margin:0 auto 1.25rem;line-height:1.7} @@ -404,6 +408,11 @@ +
+ + + +