v-captcha ( str -- str )
Form validators

Prev:v-one-word ( str -- str )
Next:v-checkbox ( str -- ? )


Vocabulary
validators

Inputs
stra string


Outputs
stra string


Word description
Throws a validation error if the string is non-empty. This is used to create bait fields for spam-bots to fill in.

Definition


: v-captcha ( str -- str )
dup empty? [ "must remain blank" throw ] unless ;