!7 concept LetMeIn { long clientID; S where; S botName; S botHome; S rationale; S otherComments; } p { db(); } html { if (eqic(uri, "/let-me-in")) { long clientID = getLong clientID(params); if (clientID == 0) ret "Need clientID"; cset(uniq LetMeIn(+clientID), paramsFromMap(clientID, 'where, 'botName, 'botHome, 'rationale, 'otherComments)); ret "OK, your wish was registered, " + clientID + ". Please stay tuned"; } ret "huh?"; }