service { format Digit = range('0', '9'); format Number = plus ( Digit ); format Alpha = union(range('a', 'z'), range('A', 'Z')); format Word = concat(Alpha, star(union(Digit, Alpha))); format Name = concat(Word, star(concat(" ", Word))); format Email = concat(Word, "@", Word, star(concat(".", Word))); html InputInfo =
| Enter your name: | |
| Enter your age: | |
| Enter your email: |
The three fields are submitted to client-side input validation. This ensures that
the data entered complies with certain regular expression formats defined
in the <bigwig>
source code for this service.