├── .babelrc ├── .gitignore ├── README.md ├── dist └── index.html ├── gulpfile.js ├── package.json ├── src ├── assets │ ├── favicon.jpg │ ├── fb-example.png │ ├── opt1.jpg │ ├── opt2.jpg │ ├── opt3.jpg │ ├── opt4.jpg │ ├── opt5.jpg │ └── rickastley.jpg ├── scripts │ ├── components │ │ ├── botCheck.component.jsx │ │ ├── main.component.jsx │ │ ├── resultDisplay.component.jsx │ │ └── sendForm.component.jsx │ ├── index.jsx │ └── services │ │ ├── formService.jsx │ │ └── pageService.jsx └── styles │ ├── main.scss │ └── partials │ ├── __form.scss │ ├── __globals.scss │ └── __result.scss ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["es2015", "react"] 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/dist/index.html -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/package.json -------------------------------------------------------------------------------- /src/assets/favicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/assets/favicon.jpg -------------------------------------------------------------------------------- /src/assets/fb-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/assets/fb-example.png -------------------------------------------------------------------------------- /src/assets/opt1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/assets/opt1.jpg -------------------------------------------------------------------------------- /src/assets/opt2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/assets/opt2.jpg -------------------------------------------------------------------------------- /src/assets/opt3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/assets/opt3.jpg -------------------------------------------------------------------------------- /src/assets/opt4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/assets/opt4.jpg -------------------------------------------------------------------------------- /src/assets/opt5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/assets/opt5.jpg -------------------------------------------------------------------------------- /src/assets/rickastley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/assets/rickastley.jpg -------------------------------------------------------------------------------- /src/scripts/components/botCheck.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/scripts/components/botCheck.component.jsx -------------------------------------------------------------------------------- /src/scripts/components/main.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/scripts/components/main.component.jsx -------------------------------------------------------------------------------- /src/scripts/components/resultDisplay.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/scripts/components/resultDisplay.component.jsx -------------------------------------------------------------------------------- /src/scripts/components/sendForm.component.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/scripts/components/sendForm.component.jsx -------------------------------------------------------------------------------- /src/scripts/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/scripts/index.jsx -------------------------------------------------------------------------------- /src/scripts/services/formService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/scripts/services/formService.jsx -------------------------------------------------------------------------------- /src/scripts/services/pageService.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/scripts/services/pageService.jsx -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/styles/main.scss -------------------------------------------------------------------------------- /src/styles/partials/__form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/styles/partials/__form.scss -------------------------------------------------------------------------------- /src/styles/partials/__globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/styles/partials/__globals.scss -------------------------------------------------------------------------------- /src/styles/partials/__result.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/src/styles/partials/__result.scss -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sorenrehkopf/custom-rick-roll/HEAD/yarn.lock --------------------------------------------------------------------------------