├── fonts ├── nlicons │ ├── nlicons.eot │ ├── nlicons.ttf │ ├── nlicons.woff │ ├── license.txt │ ├── nlicons.svg │ └── nlicons.dev.svg └── codropsicons │ ├── codropsicons.eot │ ├── codropsicons.ttf │ ├── codropsicons.woff │ ├── license.txt │ └── codropsicons.svg ├── bower.json ├── README.md ├── index.html ├── css ├── default.css └── component.css └── js ├── modernizr.custom.js └── nlform.js /fonts/nlicons/nlicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/NaturalLanguageForm/HEAD/fonts/nlicons/nlicons.eot -------------------------------------------------------------------------------- /fonts/nlicons/nlicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/NaturalLanguageForm/HEAD/fonts/nlicons/nlicons.ttf -------------------------------------------------------------------------------- /fonts/nlicons/nlicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/NaturalLanguageForm/HEAD/fonts/nlicons/nlicons.woff -------------------------------------------------------------------------------- /fonts/codropsicons/codropsicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/NaturalLanguageForm/HEAD/fonts/codropsicons/codropsicons.eot -------------------------------------------------------------------------------- /fonts/codropsicons/codropsicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/NaturalLanguageForm/HEAD/fonts/codropsicons/codropsicons.ttf -------------------------------------------------------------------------------- /fonts/codropsicons/codropsicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codrops/NaturalLanguageForm/HEAD/fonts/codropsicons/codropsicons.woff -------------------------------------------------------------------------------- /fonts/nlicons/license.txt: -------------------------------------------------------------------------------- 1 | Icon Set: IcoMoon - Free -- http://keyamoon.com/icomoon/ 2 | License: CC BY 3.0 -- http://creativecommons.org/licenses/by/3.0/ -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "NaturalLanguageForm", 3 | "homepage": "https://github.com/codrops/NaturalLanguageForm", 4 | "main": [ 5 | "css/component.css", 6 | "js/nlform.js", 7 | "js/modernizr.custom.js" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /fonts/codropsicons/license.txt: -------------------------------------------------------------------------------- 1 | Icon Set: Font Awesome -- http://fortawesome.github.com/Font-Awesome/ 2 | License: SIL -- http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL 3 | 4 | 5 | Icon Set: Eco Ico -- http://dribbble.com/shots/665585-Eco-Ico 6 | License: CC0 -- http://creativecommons.org/publicdomain/zero/1.0/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | NaturalLanguageForm 3 | ========= 4 | 5 | An experimental form that uses natural language instead of the usual form layout. Values are entered using custom input elements. 6 | 7 | [article on Codrops](http://tympanus.net/codrops/?p=15139) 8 | 9 | [demo](http://tympanus.net/Tutorials/NaturalLanguageForm/) 10 | 11 | [LICENSING & TERMS OF USE](http://tympanus.net/codrops/licensing/) -------------------------------------------------------------------------------- /fonts/nlicons/nlicons.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /fonts/nlicons/nlicons.dev.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |