From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=0.2 required=5.0 tests=DKIM_ADSP_CUSTOM_MED, DKIM_INVALID,DKIM_SIGNED,FREEMAIL_FROM,T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.4 Received: (qmail 17487 invoked from network); 24 Feb 2022 07:24:03 -0000 Received: from 4ess.inri.net (216.126.196.42) by inbox.vuxu.org with ESMTPUTF8; 24 Feb 2022 07:24:03 -0000 Received: from mail-ot1-f48.google.com ([209.85.210.48]) by 4ess; Thu Feb 24 02:19:16 -0500 2022 Received: by mail-ot1-f48.google.com with SMTP id p12-20020a05683019cc00b005af1442c9e9so693803otp.13 for <9front@9front.org>; Wed, 23 Feb 2022 23:19:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=from:message-id:to:subject:date:mime-version :content-transfer-encoding; bh=5TNrbJOXAnh73EXuvyWYxtQMVe8h7tBCbcBUZjII3Iw=; b=cfXwe/rrUyoz0C5JeUmannG/JFwxQORY4YdCQBnxZxv3HYML6WqFYcDZu6SJhnTC8P ugQCVGHWXdstH4VYWn4U5FLW0xoFI1FNlVxp8ATs4/ewHM/9xF1fPvrzzXyH+Jey8Fj0 qk9QKeiF5dHDv0yoyj8A5acIFwBrjqRsNMCWb/beGOOnnzjhTQLdlpU5fEwhppQo9hNY 7hNKQBRCW9LUdm1V9B7md8Sh9ZSkjvBm5jHYYxV4S4UMoEI3bdmy9RryKJXgVktU9VaW Tp5Bwvp6QJoLS9CAOVxaRdCr9D+RposxBYfcgw3/yv1n14HzZy0VGd5FEhItmB2GgyB6 vttA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:message-id:to:subject:date:mime-version :content-transfer-encoding; bh=5TNrbJOXAnh73EXuvyWYxtQMVe8h7tBCbcBUZjII3Iw=; b=x4T99Kw1lnIFDFsdDbhAmo6jjZAehebo4PQMmNNTa86KNavVJ8x7NY7Zd6TFx1eg6I nIHLPjzidOuT5fH0wyJUEq5iVlvaYJN7dSLWJOCXSXkAofiu2LgjJets8uvGuO92WXIy XlbxoSgwIDvWLBnO6uJ4JNVTqySGJfM8EAkoAAOnwoW7pk2cQb1cp5GqU4uVhQnlDVvh Mou5aIIZvnl4je03XOs17gBMH5Z5i1RKQSzatuu/RxmJfJphF8j0IvN4iPJYkujV6DCF YQXoGt04YCjnr9MzwXFYwPIO1vDMt+KOMzRLEu+KIYIdmT5WOXMpGuSNN8Ccp1rVdnbN FmQg== X-Gm-Message-State: AOAM531vKVG1b5NvTbt8bw6/mdHDvfvObN0aVzU8dyJ8GXoPazZY10J+ HiQmMuu2mbooLVZbKQc/PEk9j/75qq8= X-Google-Smtp-Source: ABdhPJzJAH48q8fBvd1VHxNOb7YeA2X99BguOOZ6JpAp058xTin+JR9Z2cb4vDFKbphCHlc9NWUVjQ== X-Received: by 2002:a9d:64c9:0:b0:5a8:ecae:57b9 with SMTP id n9-20020a9d64c9000000b005a8ecae57b9mr417766otl.63.1645687152670; Wed, 23 Feb 2022 23:19:12 -0800 (PST) Return-Path: Received: from cirno.thinktank (107-200-43-169.lightspeed.sntcca.sbcglobal.net. [107.200.43.169]) by smtp.gmail.com with ESMTPSA id d18sm985031oiw.18.2022.02.23.23.19.11 for <9front@9front.org> (version=TLS1_2 cipher=ECDHE-ECDSA-CHACHA20-POLY1305 bits=256/256); Wed, 23 Feb 2022 23:19:12 -0800 (PST) From: thinktankworkspaces@gmail.com X-Google-Original-From: glenda@gmail.com Message-ID: To: 9front@9front.org Date: Wed, 23 Feb 2022 23:19:07 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: ISO-certified leveraged table shader Subject: [9front] werc simple form Reply-To: 9front@9front.org Precedence: bulk I was trying to do a simple form like a registration. I stuck it in /werc/sites/thinktankworkspaces/_reg/reg.tpl It writes date to the file and nothing else. I could change the name to user_name and user_password and it will capture those results but nothing else. I suspect I need to put these variables somewhere. I tried _werc/config and it comes back blank. So whats the best way to add a new form? # reg.tpl

Registration Page


Well this is strange:%($"reg_user_name%)
Weird:%($"reg_full_name%) % my_date=`{date} % echo $my_date >> ./registration.txt % echo $reg_user_name >> ./registration.txt % echo $reg_full_name >> ./registration.txt % echo $reg_email >> ./registration.txt % echo $reg_password >> ./registration.txt