File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -255,21 +255,21 @@ You can see the full documentation in the [github.io page](http://lemoncode.gith
255255
256256### React examples
257257
258- #### Simple form ([ ES6] ( ./samples/react/es6/00%20SimpleForm ) ) , [ TypeScript] ( ./samples/react/typescript/00%20SimpleForm ) )
258+ #### Simple form ([ ES6] ( ./samples/react/es6/00%20SimpleForm ) , [ TypeScript] ( ./samples/react/typescript/00%20SimpleForm ) )
259259
260260A simple form with fullname and password fields. Applied validations:
261261
262262- Both fullname and password fields are mandatory (required validator + custom validator).
263263
264- #### Signup form ([ ES6] ( ./samples/react/es6/01%20SignupForm ) ) , [ TypeScript] ( ./samples/react/typescript/01%20SignupForm ) )
264+ #### Signup form ([ ES6] ( ./samples/react/es6/01%20SignupForm ) , [ TypeScript] ( ./samples/react/typescript/01%20SignupForm ) )
265265
266266A sign up form with username, password and confirm password fields with the next validation constraints:
267267
268268- username is mandatory and has to not exist on GitHub (required validator + custom validator).
269269- password is mandatory and has to be minimum 4 characters length (minLength validator).
270270- confirm password is mandatory and has to be the same value as password field (custom validator).
271271
272- #### Quiz form ([ ES6] ( ./samples/react/es6/02%20QuizForm ) ) , [ TypeScript] ( ./samples/react/typescript/02%20QuizForm ) )
272+ #### Quiz form ([ ES6] ( ./samples/react/es6/02%20QuizForm ) , [ TypeScript] ( ./samples/react/typescript/02%20QuizForm ) )
273273
274274A simple quiz with three options where there has to be at least one checked option to pass the validation (custom global validation).
275275
You can’t perform that action at this time.
0 commit comments