├── .DS_Store ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTORS.md ├── ContactUs.html ├── README.md ├── aboutUs.html ├── app.js ├── contact.js ├── css └── style.css ├── design ├── Create-account-active.png ├── Create-account-mobile.png ├── Create-account.png ├── Log-In-active.png ├── Log-In-mobile.png ├── Log-in.png ├── Sign-In-active.png ├── Sign-In-mobile.png └── Sign-In.png ├── favicons ├── about.txt ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico └── site.webmanifest ├── images ├── .DS_Store ├── ChefLoading.gif ├── american.jpg ├── assets │ ├── .DS_Store │ ├── card-user-images │ │ └── avatar.jpg │ ├── chef1.png │ ├── chef10.png │ ├── chef11.png │ ├── chef12.png │ ├── chef13.png │ ├── chef14.png │ ├── chef15.png │ ├── chef2.png │ ├── chef3.png │ ├── chef4.png │ ├── chef5.png │ ├── chef6.png │ ├── chef7.png │ ├── chef8.png │ ├── chef9.png │ ├── colored-google.svg │ ├── email.svg │ ├── fa_github.svg │ ├── facebook.svg │ ├── google.svg │ ├── home.svg │ ├── log-in-illustration.jpg │ ├── password.svg │ ├── phonebook.svg │ ├── sign-in-background.jpg │ └── twitter.svg ├── burger@2x.png ├── chef@2x.png ├── chinese.jpg ├── cross.png ├── french.jpg ├── hero.jpg ├── im1-transformed.png ├── indian.jpg ├── iphone.png ├── italian.jpg ├── logo.png ├── logo@2x.png ├── mexican.jpg ├── money@2x.png ├── pexels-pixabay-326279 (1).jpg ├── pexels-pixabay-326279.jpg ├── pizza.jpg ├── reviews-bg.jpg ├── seafood.jpg ├── steak.jpg └── sushi.jpg └── index.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/.DS_Store -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5503 3 | } 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /ContactUs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/ContactUs.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/README.md -------------------------------------------------------------------------------- /aboutUs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/aboutUs.html -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/app.js -------------------------------------------------------------------------------- /contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/contact.js -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/css/style.css -------------------------------------------------------------------------------- /design/Create-account-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/design/Create-account-active.png -------------------------------------------------------------------------------- /design/Create-account-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/design/Create-account-mobile.png -------------------------------------------------------------------------------- /design/Create-account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/design/Create-account.png -------------------------------------------------------------------------------- /design/Log-In-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/design/Log-In-active.png -------------------------------------------------------------------------------- /design/Log-In-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/design/Log-In-mobile.png -------------------------------------------------------------------------------- /design/Log-in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/design/Log-in.png -------------------------------------------------------------------------------- /design/Sign-In-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/design/Sign-In-active.png -------------------------------------------------------------------------------- /design/Sign-In-mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/design/Sign-In-mobile.png -------------------------------------------------------------------------------- /design/Sign-In.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/design/Sign-In.png -------------------------------------------------------------------------------- /favicons/about.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/favicons/about.txt -------------------------------------------------------------------------------- /favicons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/favicons/android-chrome-192x192.png -------------------------------------------------------------------------------- /favicons/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/favicons/android-chrome-512x512.png -------------------------------------------------------------------------------- /favicons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/favicons/apple-touch-icon.png -------------------------------------------------------------------------------- /favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/favicons/favicon.ico -------------------------------------------------------------------------------- /favicons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/favicons/site.webmanifest -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /images/ChefLoading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/ChefLoading.gif -------------------------------------------------------------------------------- /images/american.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/american.jpg -------------------------------------------------------------------------------- /images/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/.DS_Store -------------------------------------------------------------------------------- /images/assets/card-user-images/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/card-user-images/avatar.jpg -------------------------------------------------------------------------------- /images/assets/chef1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/chef1.png -------------------------------------------------------------------------------- /images/assets/chef10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/chef10.png -------------------------------------------------------------------------------- /images/assets/chef11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/chef11.png -------------------------------------------------------------------------------- /images/assets/chef12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/chef12.png -------------------------------------------------------------------------------- /images/assets/chef13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/chef13.png -------------------------------------------------------------------------------- /images/assets/chef14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/chef14.png -------------------------------------------------------------------------------- /images/assets/chef15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/chef15.png -------------------------------------------------------------------------------- /images/assets/chef2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/chef2.png -------------------------------------------------------------------------------- /images/assets/chef3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/chef3.png -------------------------------------------------------------------------------- /images/assets/chef4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/chef4.png -------------------------------------------------------------------------------- /images/assets/chef5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/chef5.png -------------------------------------------------------------------------------- /images/assets/chef6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/chef6.png -------------------------------------------------------------------------------- /images/assets/chef7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/chef7.png -------------------------------------------------------------------------------- /images/assets/chef8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/chef8.png -------------------------------------------------------------------------------- /images/assets/chef9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/chef9.png -------------------------------------------------------------------------------- /images/assets/colored-google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/colored-google.svg -------------------------------------------------------------------------------- /images/assets/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/email.svg -------------------------------------------------------------------------------- /images/assets/fa_github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/fa_github.svg -------------------------------------------------------------------------------- /images/assets/facebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/facebook.svg -------------------------------------------------------------------------------- /images/assets/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/google.svg -------------------------------------------------------------------------------- /images/assets/home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/home.svg -------------------------------------------------------------------------------- /images/assets/log-in-illustration.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/log-in-illustration.jpg -------------------------------------------------------------------------------- /images/assets/password.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/password.svg -------------------------------------------------------------------------------- /images/assets/phonebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/phonebook.svg -------------------------------------------------------------------------------- /images/assets/sign-in-background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/sign-in-background.jpg -------------------------------------------------------------------------------- /images/assets/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/assets/twitter.svg -------------------------------------------------------------------------------- /images/burger@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/burger@2x.png -------------------------------------------------------------------------------- /images/chef@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/chef@2x.png -------------------------------------------------------------------------------- /images/chinese.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/chinese.jpg -------------------------------------------------------------------------------- /images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/cross.png -------------------------------------------------------------------------------- /images/french.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/french.jpg -------------------------------------------------------------------------------- /images/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/hero.jpg -------------------------------------------------------------------------------- /images/im1-transformed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/im1-transformed.png -------------------------------------------------------------------------------- /images/indian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/indian.jpg -------------------------------------------------------------------------------- /images/iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/iphone.png -------------------------------------------------------------------------------- /images/italian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/italian.jpg -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/logo@2x.png -------------------------------------------------------------------------------- /images/mexican.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/mexican.jpg -------------------------------------------------------------------------------- /images/money@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/money@2x.png -------------------------------------------------------------------------------- /images/pexels-pixabay-326279 (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/pexels-pixabay-326279 (1).jpg -------------------------------------------------------------------------------- /images/pexels-pixabay-326279.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/pexels-pixabay-326279.jpg -------------------------------------------------------------------------------- /images/pizza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/pizza.jpg -------------------------------------------------------------------------------- /images/reviews-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/reviews-bg.jpg -------------------------------------------------------------------------------- /images/seafood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/seafood.jpg -------------------------------------------------------------------------------- /images/steak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/steak.jpg -------------------------------------------------------------------------------- /images/sushi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/images/sushi.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aditya-singh9/foodrecipe/HEAD/index.html --------------------------------------------------------------------------------