├── .gitignore ├── README.md ├── gulpfile.js ├── hero.jpg └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | .tmp 4 | npm-debug.log -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/angularregistration/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/angularregistration/HEAD/gulpfile.js -------------------------------------------------------------------------------- /hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/angularregistration/HEAD/hero.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/planetoftheweb/angularregistration/HEAD/package.json --------------------------------------------------------------------------------