├── CyberFlora ├── .gitignore ├── .idea │ ├── .gitignore │ ├── CyberFlora.iml │ ├── jsLibraryMappings.xml │ ├── modules.xml │ └── vcs.xml ├── Web │ └── HTML │ │ ├── .firebaserc │ │ ├── .gitignore │ │ ├── 404.html │ │ ├── Images │ │ ├── Aditi.jpg │ │ └── Mainak.jpg │ │ ├── Models │ │ └── tree_stump.glb │ │ ├── Readme.MD │ │ ├── Style.css │ │ ├── about.html │ │ ├── auth-status.js │ │ ├── community.html │ │ ├── firebase.json │ │ ├── garden.html │ │ ├── index.html │ │ ├── login.html │ │ ├── profile.html │ │ └── signup.html ├── index.js └── package.json ├── NGROK └── ngrok.exe ├── PPT Images ├── 20220922_Marin_AlexBass_055_copy.jpeg └── 4925142_c0ab.jpeg ├── Readme.md └── Untitled design (22).jpeg /CyberFlora/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/.gitignore -------------------------------------------------------------------------------- /CyberFlora/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/.idea/.gitignore -------------------------------------------------------------------------------- /CyberFlora/.idea/CyberFlora.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/.idea/CyberFlora.iml -------------------------------------------------------------------------------- /CyberFlora/.idea/jsLibraryMappings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/.idea/jsLibraryMappings.xml -------------------------------------------------------------------------------- /CyberFlora/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/.idea/modules.xml -------------------------------------------------------------------------------- /CyberFlora/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/.idea/vcs.xml -------------------------------------------------------------------------------- /CyberFlora/Web/HTML/.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/Web/HTML/.firebaserc -------------------------------------------------------------------------------- /CyberFlora/Web/HTML/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/Web/HTML/.gitignore -------------------------------------------------------------------------------- /CyberFlora/Web/HTML/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/Web/HTML/404.html -------------------------------------------------------------------------------- /CyberFlora/Web/HTML/Images/Aditi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/Web/HTML/Images/Aditi.jpg -------------------------------------------------------------------------------- /CyberFlora/Web/HTML/Images/Mainak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/Web/HTML/Images/Mainak.jpg -------------------------------------------------------------------------------- /CyberFlora/Web/HTML/Models/tree_stump.glb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CyberFlora/Web/HTML/Readme.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/Web/HTML/Readme.MD -------------------------------------------------------------------------------- /CyberFlora/Web/HTML/Style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/Web/HTML/Style.css -------------------------------------------------------------------------------- /CyberFlora/Web/HTML/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/Web/HTML/about.html -------------------------------------------------------------------------------- /CyberFlora/Web/HTML/auth-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/Web/HTML/auth-status.js -------------------------------------------------------------------------------- /CyberFlora/Web/HTML/community.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/Web/HTML/community.html -------------------------------------------------------------------------------- /CyberFlora/Web/HTML/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/Web/HTML/firebase.json -------------------------------------------------------------------------------- /CyberFlora/Web/HTML/garden.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/Web/HTML/garden.html -------------------------------------------------------------------------------- /CyberFlora/Web/HTML/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/Web/HTML/index.html -------------------------------------------------------------------------------- /CyberFlora/Web/HTML/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/Web/HTML/login.html -------------------------------------------------------------------------------- /CyberFlora/Web/HTML/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/Web/HTML/profile.html -------------------------------------------------------------------------------- /CyberFlora/Web/HTML/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/Web/HTML/signup.html -------------------------------------------------------------------------------- /CyberFlora/index.js: -------------------------------------------------------------------------------- 1 | console.log('Happy developing ✨') 2 | -------------------------------------------------------------------------------- /CyberFlora/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/CyberFlora/package.json -------------------------------------------------------------------------------- /NGROK/ngrok.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/NGROK/ngrok.exe -------------------------------------------------------------------------------- /PPT Images/20220922_Marin_AlexBass_055_copy.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/PPT Images/20220922_Marin_AlexBass_055_copy.jpeg -------------------------------------------------------------------------------- /PPT Images/4925142_c0ab.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/PPT Images/4925142_c0ab.jpeg -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/Readme.md -------------------------------------------------------------------------------- /Untitled design (22).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mainakpaul2005/HACKTINT_CyberFlora/HEAD/Untitled design (22).jpeg --------------------------------------------------------------------------------