diff options
author | Colin Okay <colin@cicadas.surf> | 2022-11-02 10:16:29 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-11-02 10:16:29 -0500 |
commit | 5802005a5d3f1cbac66bb7f1549096bbbf76fcf6 (patch) | |
tree | 2387c4f307512b16a27f27f0a1613e859b09bdcd | |
parent | f89ed339ff57b09b0ff0a57f76a2aa1165ec780c (diff) |
Add: explainer text on invites
-rw-r--r-- | home.lisp | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -68,10 +68,16 @@ (form () (button (:bind createbtn :content "Create Invite")) (form-element (:number :bind count)) - (p (:content "Uses are optional. Blank or Zero means unlimited use."))) - (setf (minimum count) 0 - (place-holder count) "Uses" - (width count) 70) + (p (:bind invite-explainer + :content "Share invite codes with friends to invite + them to this server. Optinally say hay many times an + invite code can be used by setting the Uses count before + clicking the Create Invite button."))) + (setf + (maximum-width invite-explainer) "500px" + (minimum count) 0 + (place-holder count) "Uses" + (width count) 70) (set-on-click createbtn (thunk* |