├── .DS_Store ├── .gitignore ├── 404.html ├── CodeInvictaSession2.html ├── README.md ├── androidapp.html ├── apps ├── privacy-policy │ ├── bookmarked.html │ ├── devsoc21.html │ └── interiAR.html └── terms-conditions │ └── devsoc21.html ├── assets ├── .DS_Store ├── css │ ├── contact.css │ ├── gravitas.css │ ├── style.css │ └── webinarStyle.css ├── fonts │ └── Poppins │ │ ├── OFL.txt │ │ ├── Poppins-Black.ttf │ │ ├── Poppins-BlackItalic.ttf │ │ ├── Poppins-Bold.ttf │ │ ├── Poppins-BoldItalic.ttf │ │ ├── Poppins-ExtraBold.ttf │ │ ├── Poppins-ExtraBoldItalic.ttf │ │ ├── Poppins-ExtraLight.ttf │ │ ├── Poppins-ExtraLightItalic.ttf │ │ ├── Poppins-Italic.ttf │ │ ├── Poppins-Light.ttf │ │ ├── Poppins-LightItalic.ttf │ │ ├── Poppins-Medium.ttf │ │ ├── Poppins-MediumItalic.ttf │ │ ├── Poppins-Regular.ttf │ │ ├── Poppins-SemiBold.ttf │ │ ├── Poppins-SemiBoldItalic.ttf │ │ ├── Poppins-Thin.ttf │ │ └── Poppins-ThinItalic.ttf ├── images │ ├── .DS_Store │ ├── backs │ │ ├── bg-feature-slant.svg │ │ ├── bg-light-slant.svg │ │ ├── blog.jpeg │ │ ├── contact.jpg │ │ ├── event.jpeg │ │ ├── projects.jpeg │ │ ├── sponsors_bg.jpg │ │ ├── team.jpeg │ │ ├── techy.jpg │ │ ├── web.jpg │ │ └── webinars.jpeg │ ├── collaborators │ │ ├── axure.png │ │ ├── bugsee.png │ │ ├── codepark.png │ │ ├── coding_blocks.png │ │ ├── collegefever.png │ │ ├── creativetim.png │ │ ├── crowdera.png │ │ ├── devfolio.png │ │ ├── gatsby.png │ │ ├── ihs.png │ │ ├── jetbrains.png │ │ ├── linode.png │ │ ├── matic.png │ │ ├── rosenfeld.png │ │ ├── stickermule.png │ │ ├── stucred.png │ │ ├── tech.png │ │ └── wolfram.png │ ├── events │ │ ├── .DS_Store │ │ ├── CookOff20.jpg │ │ ├── FlutterBootcamp.jpg │ │ ├── IntroToAI.jpg │ │ ├── TechTalks20.jpg │ │ ├── WebApps.jpg │ │ ├── bigdata.jpeg │ │ ├── blitz.jpeg │ │ ├── blockchain.jpg │ │ ├── codecombat.jpeg │ │ ├── cook.jpeg │ │ ├── cookoff3.0.jpeg │ │ ├── data_analytics.jpg │ │ ├── devsoc19.jpg │ │ ├── devsoc20.jpg │ │ ├── error404.jpg │ │ ├── game.jpeg │ │ ├── insight.jpeg │ │ ├── insight17.jpeg │ │ ├── seriesbuff.jpeg │ │ ├── server.jpeg │ │ ├── webapps.jpeg │ │ └── who-breaks-first.jpeg │ ├── group_Photos │ │ ├── grp1.jpeg │ │ ├── grp2.jpeg │ │ └── grp3.jpeg │ ├── index.jpg │ ├── logos │ │ ├── cclogo.png │ │ ├── ccwhite.png │ │ ├── logo.jpg │ │ └── play.png │ ├── projects │ │ ├── 2018 │ │ │ ├── DEVSOC.jpg │ │ │ ├── codechef.png │ │ │ ├── codechef16.jpg │ │ │ ├── codechef17.png │ │ │ ├── codecombat.png │ │ │ ├── devsoc19.jpg │ │ │ ├── githubapi.jpeg │ │ │ └── timer.png │ │ ├── 2019 │ │ │ ├── Logo.png │ │ │ ├── devsoc.png │ │ │ ├── devsoc20.png │ │ │ ├── devsoc20app.jpg │ │ │ ├── devsoc_admin.png │ │ │ ├── freeslot.jpeg │ │ │ ├── goal.jpg │ │ │ ├── recruitment.png │ │ │ ├── seds.png │ │ │ ├── sms_app.png │ │ │ └── whatsapp-groupadd.png │ │ └── 2020 │ │ │ ├── bookmark.jpeg │ │ │ ├── cet.jpg │ │ │ ├── codechef20.png │ │ │ ├── codechefapp.png │ │ │ ├── cookoff.png │ │ │ ├── ffcc.jpg │ │ │ ├── ffds.png │ │ │ ├── interiAR.jpeg │ │ │ └── leoclub.png │ ├── team │ │ ├── akshat.jpg │ │ ├── anmol.jpg │ │ ├── anuj.jpg │ │ ├── devang.jpg │ │ ├── dipto1.jpg │ │ ├── ishan.jpg │ │ ├── kshitiz1.jpg │ │ ├── kunal1.jpg │ │ ├── muskan1.jpg │ │ ├── navyaa.jpg │ │ ├── nishi.jpg │ │ ├── priyank.jpg │ │ ├── rajat1.jpg │ │ ├── shreya.jpg │ │ └── vansh.jpg │ ├── title.png │ └── webinars │ │ ├── cpp_Banner.jpg │ │ ├── git.jpg │ │ ├── python.jpg │ │ ├── reactportfolio.jpg │ │ ├── restapi.jpg │ │ └── webdev.jpg ├── js │ ├── contact.js │ ├── main.js │ ├── preloader.js │ ├── typing.js │ └── webinarScript.js ├── loader.gif └── preloader.gif ├── aws101.html ├── crioReg.html ├── discord.html ├── events.html ├── google30df3f174a5eae09 (1).html ├── google30df3f174a5eae09.html ├── gravitasReg.html ├── index.html ├── iosapp.html ├── projects.html ├── rarible-tracks.html ├── sponsors.html ├── team.html ├── updates.html ├── wasurvey.html └── webinars.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | test.html 2 | /css 3 | .vscode 4 | node_modules -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 30 | 31 | 32 | 33 | 34 | 36 | 37 | 38 | 40 | 41 | 42 | 43 | 44 | 45 | 47 | 48 | 49 | 51 | 52 | 54 | 55 | 56 | 57 | 62 |21 | With :heart: by CodeChef-VIT 22 |
-------------------------------------------------------------------------------- /androidapp.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 |19 | Codechef-VIT built the Bookmarked app as 20 | a Free app. This SERVICE is provided by 21 | Codechef-VIT at no cost and is intended for use as 22 | is. 23 |
24 |25 | This page is used to inform visitors regarding our 26 | policies with the collection, use, and disclosure of Personal 27 | Information if anyone decided to use our Service. 28 |
29 |30 | If you choose to use our Service, then you agree to 31 | the collection and use of information in relation to this 32 | policy. The Personal Information that we collect is 33 | used for providing and improving the Service. We will not use or share your information with 34 | anyone except as described in this Privacy Policy. 35 |
36 |37 | The terms used in this Privacy Policy have the same meanings 38 | as in our Terms and Conditions, which is accessible at 39 | Bookmarked unless otherwise defined in this Privacy Policy. 40 |
41 |Information Collection and Use
42 |43 | For a better experience, while using our Service, we 44 | may require you to provide us with certain personally 45 | identifiable information, including but not limited to Name and email address. The information that 46 | we request will be retained by us and used as described in this privacy policy. 47 |
48 |50 | The app does use third party services that may collect 51 | information used to identify you. 52 |
53 |54 | Link to privacy policy of third party service providers used 55 | by the app 56 |
57 |Log Data
83 |84 | We want to inform you that whenever you 85 | use our Service, in a case of an error in the app 86 | we collect data and information (through third party 87 | products) on your phone called Log Data. This Log Data may 88 | include information such as your device Internet Protocol 89 | (“IP”) address, device name, operating system version, the 90 | configuration of the app when utilizing our Service, 91 | the time and date of your use of the Service, and other 92 | statistics. 93 |
94 |Cookies
95 |96 | Cookies are files with a small amount of data that are 97 | commonly used as anonymous unique identifiers. These are sent 98 | to your browser from the websites that you visit and are 99 | stored on your device's internal memory. 100 |
101 |102 | This Service does not use these “cookies” explicitly. However, 103 | the app may use third party code and libraries that use 104 | “cookies” to collect information and improve their services. 105 | You have the option to either accept or refuse these cookies 106 | and know when a cookie is being sent to your device. If you 107 | choose to refuse our cookies, you may not be able to use some 108 | portions of this Service. 109 |
110 |Service Providers
111 |112 | We may employ third-party companies and 113 | individuals due to the following reasons: 114 |
115 |122 | We want to inform users of this Service 123 | that these third parties have access to your Personal 124 | Information. The reason is to perform the tasks assigned to 125 | them on our behalf. However, they are obligated not to 126 | disclose or use the information for any other purpose. 127 |
128 |Security
129 |130 | We value your trust in providing us your 131 | Personal Information, thus we are striving to use commercially 132 | acceptable means of protecting it. But remember that no method 133 | of transmission over the internet, or method of electronic 134 | storage is 100% secure and reliable, and we cannot 135 | guarantee its absolute security. 136 |
137 |Links to Other Sites
138 |139 | This Service may contain links to other sites. If you click on 140 | a third-party link, you will be directed to that site. Note 141 | that these external sites are not operated by us. 142 | Therefore, we strongly advise you to review the 143 | Privacy Policy of these websites. We have 144 | no control over and assume no responsibility for the content, 145 | privacy policies, or practices of any third-party sites or 146 | services. 147 |
148 |Children’s Privacy
149 |150 | These Services do not address anyone under the age of 13. 151 | We do not knowingly collect personally 152 | identifiable information from children under 13. In the case 153 | we discover that a child under 13 has provided 154 | us with personal information, we immediately 155 | delete this from our servers. If you are a parent or guardian 156 | and you are aware that your child has provided us with 157 | personal information, please contact us so that 158 | we will be able to do necessary actions. 159 |
160 |Changes to This Privacy Policy
161 |162 | We may update our Privacy Policy from 163 | time to time. Thus, you are advised to review this page 164 | periodically for any changes. We will 165 | notify you of any changes by posting the new Privacy Policy on 166 | this page. 167 |
168 |This policy is effective as of 2020-07-04
169 |Contact Us
170 |171 | If you have any questions or suggestions about our 172 | Privacy Policy, do not hesitate to contact us at codechefvit@gmail.com. 173 |
174 | 175 | 176 | -------------------------------------------------------------------------------- /apps/privacy-policy/devsoc21.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |19 | CodeChef-VIT built the DEVSOC’21 app as 20 | a Free app. This SERVICE is provided by 21 | CodeChef-VIT at no cost and is intended for use as 22 | is. 23 |
24 |25 | This page is used to inform visitors regarding my 26 | policies with the collection, use, and disclosure of Personal 27 | Information if anyone decided to use my Service. 28 |
29 |30 | If you choose to use my Service, then you agree to 31 | the collection and use of information in relation to this 32 | policy. The Personal Information that I collect is 33 | used for providing and improving the Service. I will not use or share your information with 34 | anyone except as described in this Privacy Policy. 35 |
36 |37 | The terms used in this Privacy Policy have the same meanings 38 | as in our Terms and Conditions, which is accessible at 39 | DEVSOC’21 unless otherwise defined in this Privacy Policy. 40 |
41 |Information Collection and Use
42 |43 | For a better experience, while using our Service, I 44 | may require you to provide us with certain personally 45 | identifiable information, including but not limited to Email, Name, Phone Number. The information that 46 | I request will be retained on your device and is not collected by me in any way. 47 |
48 |50 | The app does use third party services that may collect 51 | information used to identify you. 52 |
53 |54 | Link to privacy policy of third party service providers used 55 | by the app 56 |
57 |Log Data
89 |90 | I want to inform you that whenever you 91 | use my Service, in a case of an error in the app 92 | I collect data and information (through third party 93 | products) on your phone called Log Data. This Log Data may 94 | include information such as your device Internet Protocol 95 | (“IP”) address, device name, operating system version, the 96 | configuration of the app when utilizing my Service, 97 | the time and date of your use of the Service, and other 98 | statistics. 99 |
100 |Cookies
101 |102 | Cookies are files with a small amount of data that are 103 | commonly used as anonymous unique identifiers. These are sent 104 | to your browser from the websites that you visit and are 105 | stored on your device's internal memory. 106 |
107 |108 | This Service does not use these “cookies” explicitly. However, 109 | the app may use third party code and libraries that use 110 | “cookies” to collect information and improve their services. 111 | You have the option to either accept or refuse these cookies 112 | and know when a cookie is being sent to your device. If you 113 | choose to refuse our cookies, you may not be able to use some 114 | portions of this Service. 115 |
116 |Service Providers
117 |118 | I may employ third-party companies and 119 | individuals due to the following reasons: 120 |
121 |128 | I want to inform users of this Service 129 | that these third parties have access to your Personal 130 | Information. The reason is to perform the tasks assigned to 131 | them on our behalf. However, they are obligated not to 132 | disclose or use the information for any other purpose. 133 |
134 |Security
135 |136 | I value your trust in providing us your 137 | Personal Information, thus we are striving to use commercially 138 | acceptable means of protecting it. But remember that no method 139 | of transmission over the internet, or method of electronic 140 | storage is 100% secure and reliable, and I cannot 141 | guarantee its absolute security. 142 |
143 |Links to Other Sites
144 |145 | This Service may contain links to other sites. If you click on 146 | a third-party link, you will be directed to that site. Note 147 | that these external sites are not operated by me. 148 | Therefore, I strongly advise you to review the 149 | Privacy Policy of these websites. I have 150 | no control over and assume no responsibility for the content, 151 | privacy policies, or practices of any third-party sites or 152 | services. 153 |
154 |Children’s Privacy
155 |156 | These Services do not address anyone under the age of 13. 157 | I do not knowingly collect personally 158 | identifiable information from children under 13 years of age. In the case 159 | I discover that a child under 13 has provided 160 | me with personal information, I immediately 161 | delete this from our servers. If you are a parent or guardian 162 | and you are aware that your child has provided us with 163 | personal information, please contact me so that 164 | I will be able to do necessary actions. 165 |
166 |Changes to This Privacy Policy
167 |168 | I may update our Privacy Policy from 169 | time to time. Thus, you are advised to review this page 170 | periodically for any changes. I will 171 | notify you of any changes by posting the new Privacy Policy on 172 | this page. 173 |
174 |This policy is effective as of 2021-04-26
175 |Contact Us
176 |177 | If you have any questions or suggestions about my 178 | Privacy Policy, do not hesitate to contact me at codechefvit@gmail.com. 179 |
180 |This privacy policy page was created at privacypolicytemplate.net and modified/generated by App 183 | Privacy Policy Generator
184 | 185 | 186 | -------------------------------------------------------------------------------- /apps/privacy-policy/interiAR.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |19 | CodeChef-VIT built the interiAR app as 20 | a Free app. This SERVICE is provided by 21 | CodeChef-VIT at no cost and is intended for use as 22 | is. 23 |
24 |25 | This page is used to inform visitors regarding our 26 | policies with the collection, use, and disclosure of Personal 27 | Information if anyone decided to use our Service. 28 |
29 |30 | If you choose to use our Service, then you agree to 31 | the collection and use of information in relation to this 32 | policy. The Personal Information that we collect is 33 | used for providing and improving the Service. We will not use or share your information with 34 | anyone except as described in this Privacy Policy. 35 |
36 |37 | The terms used in this Privacy Policy have the same meanings 38 | as in our Terms and Conditions, which is accessible at 39 | interiAR unless otherwise defined in this Privacy Policy. 40 |
41 |Information Collection and Use
42 |43 | For a better experience, while using our Service, we 44 | may require you to provide us with certain personally 45 | identifiable information, including but not limited to E-mail, Images taken in app. The information that 46 | we request will be retained by us and used as described in this privacy policy. 47 |
48 |50 | The app does use third party services that may collect 51 | information used to identify you. 52 |
53 |54 | Link to privacy policy of third party service providers used 55 | by the app 56 |
57 |Log Data
83 |84 | We want to inform you that whenever you 85 | use our Service, in a case of an error in the app 86 | we collect data and information (through third party 87 | products) on your phone called Log Data. This Log Data may 88 | include information such as your device Internet Protocol 89 | (“IP”) address, device name, operating system version, the 90 | configuration of the app when utilizing our Service, 91 | the time and date of your use of the Service, and other 92 | statistics. 93 |
94 |Cookies
95 |96 | Cookies are files with a small amount of data that are 97 | commonly used as anonymous unique identifiers. These are sent 98 | to your browser from the websites that you visit and are 99 | stored on your device's internal memory. 100 |
101 |102 | This Service does not use these “cookies” explicitly. However, 103 | the app may use third party code and libraries that use 104 | “cookies” to collect information and improve their services. 105 | You have the option to either accept or refuse these cookies 106 | and know when a cookie is being sent to your device. If you 107 | choose to refuse our cookies, you may not be able to use some 108 | portions of this Service. 109 |
110 |Service Providers
111 |112 | We may employ third-party companies and 113 | individuals due to the following reasons: 114 |
115 |122 | We want to inform users of this Service 123 | that these third parties have access to your Personal 124 | Information. The reason is to perform the tasks assigned to 125 | them on our behalf. However, they are obligated not to 126 | disclose or use the information for any other purpose. 127 |
128 |Security
129 |130 | We value your trust in providing us your 131 | Personal Information, thus we are striving to use commercially 132 | acceptable means of protecting it. But remember that no method 133 | of transmission over the internet, or method of electronic 134 | storage is 100% secure and reliable, and we cannot 135 | guarantee its absolute security. 136 |
137 |Links to Other Sites
138 |139 | This Service may contain links to other sites. If you click on 140 | a third-party link, you will be directed to that site. Note 141 | that these external sites are not operated by us. 142 | Therefore, we strongly advise you to review the 143 | Privacy Policy of these websites. We have 144 | no control over and assume no responsibility for the content, 145 | privacy policies, or practices of any third-party sites or 146 | services. 147 |
148 |Children’s Privacy
149 |150 | These Services do not address anyone under the age of 13. 151 | We do not knowingly collect personally 152 | identifiable information from children under 13. In the case 153 | we discover that a child under 13 has provided 154 | us with personal information, we immediately 155 | delete this from our servers. If you are a parent or guardian 156 | and you are aware that your child has provided us with 157 | personal information, please contact us so that 158 | we will be able to do necessary actions. 159 |
160 |Changes to This Privacy Policy
161 |162 | We may update our Privacy Policy from 163 | time to time. Thus, you are advised to review this page 164 | periodically for any changes. We will 165 | notify you of any changes by posting the new Privacy Policy on 166 | this page. 167 |
168 |This policy is effective as of 2020-06-27
169 |Contact Us
170 |171 | If you have any questions or suggestions about our 172 | Privacy Policy, do not hesitate to contact us at codechefvit@gmail.com. 173 |
174 | 175 | 176 | -------------------------------------------------------------------------------- /apps/terms-conditions/devsoc21.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |19 | By downloading or using the app, these terms will 20 | automatically apply to you – you should make sure therefore 21 | that you read them carefully before using the app. You’re not 22 | allowed to copy, or modify the app, any part of the app, or 23 | our trademarks in any way. You’re not allowed to attempt to 24 | extract the source code of the app, and you also shouldn’t try 25 | to translate the app into other languages, or make derivative 26 | versions. The app itself, and all the trade marks, copyright, 27 | database rights and other intellectual property rights related 28 | to it, still belong to CodeChef-VIT. 29 |
30 |31 | CodeChef-VIT is committed to ensuring that the app is 32 | as useful and efficient as possible. For that reason, we 33 | reserve the right to make changes to the app or to charge for 34 | its services, at any time and for any reason. We will never 35 | charge you for the app or its services without making it very 36 | clear to you exactly what you’re paying for. 37 |
38 |39 | The DEVSOC’21 app stores and processes personal data that 40 | you have provided to us, in order to provide my 41 | Service. It’s your responsibility to keep your phone and 42 | access to the app secure. We therefore recommend that you do 43 | not jailbreak or root your phone, which is the process of 44 | removing software restrictions and limitations imposed by the 45 | official operating system of your device. It could make your 46 | phone vulnerable to malware/viruses/malicious programs, 47 | compromise your phone’s security features and it could mean 48 | that the DEVSOC’21 app won’t work properly or at all. 49 |
50 |52 | The app does use third party services that declare their own 53 | Terms and Conditions. 54 |
55 |56 | Link to Terms and Conditions of third party service 57 | providers used by the app 58 |
59 |91 | You should be aware that there are certain things that 92 | CodeChef-VIT will not take responsibility for. Certain 93 | functions of the app will require the app to have an active 94 | internet connection. The connection can be Wi-Fi, or provided 95 | by your mobile network provider, but CodeChef-VIT 96 | cannot take responsibility for the app not working at full 97 | functionality if you don’t have access to Wi-Fi, and you don’t 98 | have any of your data allowance left. 99 |
100 | 101 |102 | If you’re using the app outside of an area with Wi-Fi, you 103 | should remember that your terms of the agreement with your 104 | mobile network provider will still apply. As a result, you may 105 | be charged by your mobile provider for the cost of data for 106 | the duration of the connection while accessing the app, or 107 | other third party charges. In using the app, you’re accepting 108 | responsibility for any such charges, including roaming data 109 | charges if you use the app outside of your home territory 110 | (i.e. region or country) without turning off data roaming. If 111 | you are not the bill payer for the device on which you’re 112 | using the app, please be aware that we assume that you have 113 | received permission from the bill payer for using the app. 114 |
115 |116 | Along the same lines, CodeChef-VIT cannot always take 117 | responsibility for the way you use the app i.e. You need to 118 | make sure that your device stays charged – if it runs out of 119 | battery and you can’t turn it on to avail the Service, 120 | CodeChef-VIT cannot accept responsibility. 121 |
122 |123 | With respect to CodeChef-VIT’s responsibility for your 124 | use of the app, when you’re using the app, it’s important to 125 | bear in mind that although we endeavour to ensure that it is 126 | updated and correct at all times, we do rely on third parties 127 | to provide information to us so that we can make it available 128 | to you. CodeChef-VIT accepts no liability for any 129 | loss, direct or indirect, you experience as a result of 130 | relying wholly on this functionality of the app. 131 |
132 |133 | At some point, we may wish to update the app. The app is 134 | currently available on iOS – the requirements for 135 | system(and for any additional systems we 136 | decide to extend the availability of the app to) may change, 137 | and you’ll need to download the updates if you want to keep 138 | using the app. CodeChef-VIT does not promise that it 139 | will always update the app so that it is relevant to you 140 | and/or works with the iOS version that you have 141 | installed on your device. However, you promise to always 142 | accept updates to the application when offered to you, We may 143 | also wish to stop providing the app, and may terminate use of 144 | it at any time without giving notice of termination to you. 145 | Unless we tell you otherwise, upon any termination, (a) the 146 | rights and licenses granted to you in these terms will end; 147 | (b) you must stop using the app, and (if needed) delete it 148 | from your device. 149 |
150 |Changes to This Terms and Conditions
151 |152 | I may update our Terms and Conditions 153 | from time to time. Thus, you are advised to review this page 154 | periodically for any changes. I will 155 | notify you of any changes by posting the new Terms and 156 | Conditions on this page. 157 |
158 |159 | These terms and conditions are effective as of 2021-04-26 160 |
161 |Contact Us
162 |163 | If you have any questions or suggestions about my 164 | Terms and Conditions, do not hesitate to contact me 165 | at codechefvit@gmail.com. 166 |
167 |This Terms and Conditions page was generated by App Privacy Policy Generator
169 | 170 | 171 | -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/.DS_Store -------------------------------------------------------------------------------- /assets/css/contact.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | src: url('../fonts/Poppins/Poppins-Regular.ttf'); 3 | font-family: Poppins; 4 | } 5 | 6 | 7 | /* RESET RULES 8 | –––––––––––––––––––––––––––––––––––––––––––––––––– */ 9 | :root { 10 | 11 | --bodyColor: #f4f4f4; 12 | --borderFormEls: hsl(0, 0%, 10%); 13 | --bgFormEls: #fff; 14 | --bgFormElsFocus: #fff; 15 | } 16 | 17 | * { 18 | padding: 0; 19 | margin: 0; 20 | box-sizing: border-box; 21 | outline: none; 22 | font-family: Poppins; 23 | font-size: 100%; 24 | } 25 | 26 | div#preloader { 27 | position: fixed; 28 | left: 0; 29 | top: 0; 30 | z-index: 99999; 31 | height: 100%; 32 | width: 100%; 33 | overflow: visible; 34 | background: #fbfbfb url('../loader.gif') no-repeat center center; 35 | margin: 0; 36 | } 37 | a { 38 | color: inherit; 39 | } 40 | 41 | button 42 | { 43 | cursor: pointer; 44 | } 45 | 46 | 47 | /* Remove native arrow on IE */ 48 | select::-ms-expand { 49 | display: none; 50 | } 51 | 52 | /*Remove dotted outline from selected option on Firefox*/ 53 | /*https://stackoverflow.com/questions/3773430/remove-outline-from-select-box-in-ff/18853002#18853002*/ 54 | /*We use !important to override the color set for the select on line 99*/ 55 | select:-moz-focusring { 56 | color: transparent !important; 57 | text-shadow: 0 0 0 var(--white); 58 | } 59 | 60 | textarea { 61 | resize: none; 62 | } 63 | 64 | ul { 65 | list-style: none; 66 | } 67 | 68 | body { 69 | 70 | background: var(--bodyColor); 71 | color: var(--white); 72 | 73 | } 74 | 75 | 76 | .form { 77 | max-width: 35em; 78 | width: 75%; 79 | position: relative; 80 | } 81 | 82 | .form i { 83 | color: black; 84 | position: absolute; 85 | bottom: .7rem; 86 | left: -1.5em; 87 | } 88 | 89 | .fields { 90 | position: relative; 91 | margin: 2rem 0; 92 | } 93 | 94 | .form input { 95 | width: 100%; 96 | height: 3.7em; 97 | padding-top: .7em; 98 | border: none; 99 | background-color: var(--bodyColor); 100 | } 101 | 102 | .form label { 103 | position: absolute; 104 | bottom: 0; 105 | left: 0; 106 | color: black; 107 | width: 100%; 108 | height: 100%; 109 | pointer-events: none; 110 | border-bottom: 1px solid black; 111 | overflow: hidden; 112 | } 113 | 114 | .form label::after { 115 | content: ''; 116 | position: absolute; 117 | bottom: -1px; 118 | left: 0; 119 | width: 100%; 120 | height: 100%; 121 | border-bottom: 3px solid #2a8ed1; 122 | transform: translateX(-100%); 123 | transition: transform .3s ease; 124 | } 125 | 126 | .form .content-name { 127 | position: absolute; 128 | bottom: 5px; 129 | left: 0; 130 | transition: all .3s ease; 131 | } 132 | 133 | .form input:focus + .label-name .content-name, 134 | .form input:valid + .label-name .content-name { 135 | transform: translateY(-100%); 136 | font-size: .9em; 137 | color: #2a8ed1; 138 | 139 | } 140 | 141 | .form input:focus + .label-name:after, 142 | .form input:valid + .label-name:after { 143 | transform: translateX(0%); 144 | } 145 | 146 | .form input:focus + .label-name, 147 | .form input:valid + .label-name { 148 | border-bottom: none; 149 | } 150 | 151 | .btn{ 152 | background-color: #293243 !important; 153 | } 154 | 155 | button { 156 | width: 15em; 157 | line-height: 1.5; 158 | padding: 15px 10px; 159 | font-weight: bold; 160 | background-color: #293243; 161 | color: #fff !important; 162 | position: relative; 163 | overflow-x: hidden!important; 164 | transition: filter 0.2s; 165 | border: 1px solid var(--borderFormEls); 166 | border-radius: 10px; 167 | } 168 | 169 | button > * { 170 | display: inline-block; 171 | width: 100%; 172 | transition: transform 0.4s ease-in-out; 173 | } 174 | 175 | button .back { 176 | position: absolute; 177 | left: 50%; 178 | top: 50%; 179 | transform: translate(-110%, -50%); 180 | } 181 | 182 | button:enabled:hover .back, 183 | button:focus .back { 184 | transform: translate(-50%, -50%); 185 | } 186 | 187 | button:enabled:hover .front, 188 | button:focus .front { 189 | transform: translateX(110%); 190 | } 191 | 192 | button:hover{ 193 | background-color: #2980B9 !important; 194 | -webkit-transition: background-color 300ms ease-in-out; 195 | -ms-transition: background-color 300ms ease-in-out; 196 | transition: background-color 300ms ease-in-out; 197 | overflow-x: hidden!important; 198 | } 199 | 200 | 201 | 202 | /* Error Messages */ 203 | #errorHandler { 204 | color: red; 205 | } 206 | 207 | @media(max-width: 790px){ 208 | button{ 209 | width: 80%; 210 | } 211 | .wrap{ 212 | width: 80%; 213 | } 214 | } 215 | @media(max-width: 430px){ 216 | .wrap{ 217 | width: 95%; 218 | } 219 | .input-field{ 220 | width: 290px; 221 | } 222 | } -------------------------------------------------------------------------------- /assets/css/gravitas.css: -------------------------------------------------------------------------------- 1 | .tab { 2 | display: none; 3 | } 4 | 5 | .step { 6 | display: inline-block; 7 | width: 25%; 8 | margin: 5px; 9 | max-width: 200px; 10 | padding: 7px; 11 | background-color: #000; 12 | color: #fff; 13 | text-transform: uppercase; 14 | outline: none; 15 | border: none; 16 | } 17 | 18 | .step.active { 19 | background-color: #444; 20 | border: 1px solid #333; 21 | box-shadow: 1px 1px 3px #000; 22 | } 23 | .step:focus { 24 | outline: none; 25 | } 26 | .active { 27 | display: block; 28 | } 29 | 30 | .step:hover { 31 | background-color: #444; 32 | box-shadow: 4px 3px 7px #6667; 33 | } 34 | 35 | @media all and (max-width: 600px) { 36 | .step { 37 | width: 80%; 38 | max-width: 300px; 39 | } 40 | } -------------------------------------------------------------------------------- /assets/css/webinarStyle.css: -------------------------------------------------------------------------------- 1 | /*css for body*/ 2 | 3 | .img-overlay { 4 | position: absolute; 5 | top: 0; 6 | bottom: 0; 7 | left: 0; 8 | right: 0; 9 | } 10 | 11 | .img-overlay::before { 12 | content: ' '; 13 | display: block; 14 | /* adjust 'height' to position overlay content vertically */ 15 | height: 40%; 16 | } 17 | 18 | .body-container { 19 | margin-top: 200px; 20 | height: auto; 21 | } 22 | 23 | .round-button { 24 | position: absolute; 25 | margin-left: 80px; 26 | margin-top: -30px; 27 | box-sizing: border-box; 28 | display: block; 29 | width: 80px; 30 | height: 80px; 31 | padding-top: 25px; 32 | padding-left: 10px; 33 | line-height: 20px; 34 | border-radius: 50%; 35 | color: #34495E; 36 | text-align: center; 37 | text-decoration: none; 38 | background-color: #2980B9; 39 | font-size: 15px; 40 | transition: all 0.3s ease; 41 | } 42 | 43 | .grid-img { 44 | width: 100%; 45 | } 46 | 47 | .inside { 48 | height: 300px; 49 | position: relative; 50 | overflow: hidden; 51 | padding-bottom: calc(50% - 10px); 52 | } 53 | 54 | .img-box { 55 | position: absolute; 56 | left: 0; 57 | top: 0; 58 | right: 0; 59 | bottom: 0; 60 | width: auto; 61 | height: 300px; 62 | background-size: cover; 63 | background-position: center; 64 | box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5); 65 | } 66 | 67 | .content-box { 68 | position: absolute; 69 | left: 45%; 70 | /*top: -1px;*/ 71 | background: url('../images/backs/bg-feature-slant.svg') no-repeat left bottom; 72 | background-size: auto 100%; 73 | padding: 80px 15% 15% 15%; 74 | align-items: center; 75 | height: 300px; 76 | } 77 | 78 | .text { 79 | color: #fff; 80 | } 81 | 82 | .web { 83 | padding: 20px; 84 | } 85 | 86 | .round-button:hover { 87 | /*background-color: #34495E;*/ 88 | color: #34495E; 89 | transform: translateY(-10px); 90 | } 91 | 92 | div.modal.fade.show { 93 | padding: 0 !important; 94 | } 95 | 96 | .modal-content { 97 | /* width: 700px;*/ 98 | background: transparent !important; 99 | border: none; 100 | /* padding: 0!important;*/ 101 | } 102 | 103 | iframe { 104 | position: absolute; 105 | top: 50%; 106 | left: 50%; 107 | transform: translate(-50%, -50%); 108 | -ms-transform: translate(-50%, -50%); 109 | width: 700px; 110 | height: 500px; 111 | } 112 | 113 | .modal-header { 114 | border: none; 115 | } 116 | 117 | 118 | @media(max-width: 768px) { 119 | .bgimg { 120 | position: relative; 121 | height: 87vh; 122 | } 123 | 124 | .context { 125 | text-align: center; 126 | margin-top: 30px; 127 | position: absolute; 128 | font-size: 1.4em; 129 | float: none; 130 | } 131 | 132 | .context>h1 { 133 | font-size: 1.8em; 134 | } 135 | 136 | iframe { 137 | width: 500px !important; 138 | height: 300px !important; 139 | /*margin-left: -20px;*/ 140 | } 141 | 142 | } 143 | 144 | @media(max-width: 350px) { 145 | 146 | .round-button { 147 | margin-left: 100px !important; 148 | } 149 | 150 | .text>h2 { 151 | font-size: 15px; 152 | } 153 | 154 | .text>p { 155 | font-size: 10px; 156 | } 157 | } 158 | 159 | @media(max-width: 576px) { 160 | .content-box { 161 | background: none; 162 | padding-top: 200px; 163 | left: 20px; 164 | padding-left: 0; 165 | } 166 | 167 | .img-box { 168 | box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.7); 169 | } 170 | 171 | .round-button { 172 | width: 60px; 173 | height: 60px; 174 | margin-top: -10px; 175 | margin-left: 170px; 176 | padding-top: 16px; 177 | padding-left: 5px; 178 | z-index: 5; 179 | } 180 | 181 | .round-button>i { 182 | font-size: 30px; 183 | } 184 | 185 | iframe { 186 | width: 350px !important; 187 | height: 200px !important; 188 | } 189 | 190 | .text>h2 { 191 | font-size: 20px; 192 | } 193 | 194 | .text>p { 195 | font-size: 15px; 196 | } 197 | } 198 | 199 | @media(max-width: 430px) { 200 | .round-button { 201 | margin-left: 150px; 202 | } 203 | } 204 | 205 | -------------------------------------------------------------------------------- /assets/fonts/Poppins/OFL.txt: -------------------------------------------------------------------------------- 1 | Copyright 2014-2017 Indian Type Foundry (info@indiantypefoundry.com) 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 4 | This license is copied below, and is also available with a FAQ at: 5 | http://scripts.sil.org/OFL 6 | 7 | 8 | ----------------------------------------------------------- 9 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 10 | ----------------------------------------------------------- 11 | 12 | PREAMBLE 13 | The goals of the Open Font License (OFL) are to stimulate worldwide 14 | development of collaborative font projects, to support the font creation 15 | efforts of academic and linguistic communities, and to provide a free and 16 | open framework in which fonts may be shared and improved in partnership 17 | with others. 18 | 19 | The OFL allows the licensed fonts to be used, studied, modified and 20 | redistributed freely as long as they are not sold by themselves. The 21 | fonts, including any derivative works, can be bundled, embedded, 22 | redistributed and/or sold with any software provided that any reserved 23 | names are not used by derivative works. The fonts and derivatives, 24 | however, cannot be released under any other type of license. The 25 | requirement for fonts to remain under this license does not apply 26 | to any document created using the fonts or their derivatives. 27 | 28 | DEFINITIONS 29 | "Font Software" refers to the set of files released by the Copyright 30 | Holder(s) under this license and clearly marked as such. This may 31 | include source files, build scripts and documentation. 32 | 33 | "Reserved Font Name" refers to any names specified as such after the 34 | copyright statement(s). 35 | 36 | "Original Version" refers to the collection of Font Software components as 37 | distributed by the Copyright Holder(s). 38 | 39 | "Modified Version" refers to any derivative made by adding to, deleting, 40 | or substituting -- in part or in whole -- any of the components of the 41 | Original Version, by changing formats or by porting the Font Software to a 42 | new environment. 43 | 44 | "Author" refers to any designer, engineer, programmer, technical 45 | writer or other person who contributed to the Font Software. 46 | 47 | PERMISSION & CONDITIONS 48 | Permission is hereby granted, free of charge, to any person obtaining 49 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 50 | redistribute, and sell modified and unmodified copies of the Font 51 | Software, subject to the following conditions: 52 | 53 | 1) Neither the Font Software nor any of its individual components, 54 | in Original or Modified Versions, may be sold by itself. 55 | 56 | 2) Original or Modified Versions of the Font Software may be bundled, 57 | redistributed and/or sold with any software, provided that each copy 58 | contains the above copyright notice and this license. These can be 59 | included either as stand-alone text files, human-readable headers or 60 | in the appropriate machine-readable metadata fields within text or 61 | binary files as long as those fields can be easily viewed by the user. 62 | 63 | 3) No Modified Version of the Font Software may use the Reserved Font 64 | Name(s) unless explicit written permission is granted by the corresponding 65 | Copyright Holder. This restriction only applies to the primary font name as 66 | presented to the users. 67 | 68 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 69 | Software shall not be used to promote, endorse or advertise any 70 | Modified Version, except to acknowledge the contribution(s) of the 71 | Copyright Holder(s) and the Author(s) or with their explicit written 72 | permission. 73 | 74 | 5) The Font Software, modified or unmodified, in part or in whole, 75 | must be distributed entirely under this license, and must not be 76 | distributed under any other license. The requirement for fonts to 77 | remain under this license does not apply to any document created 78 | using the Font Software. 79 | 80 | TERMINATION 81 | This license becomes null and void if any of the above conditions are 82 | not met. 83 | 84 | DISCLAIMER 85 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 86 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 87 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 88 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 89 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 90 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 91 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 92 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 93 | OTHER DEALINGS IN THE FONT SOFTWARE. 94 | -------------------------------------------------------------------------------- /assets/fonts/Poppins/Poppins-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/fonts/Poppins/Poppins-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins/Poppins-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/fonts/Poppins/Poppins-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins/Poppins-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/fonts/Poppins/Poppins-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins/Poppins-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/fonts/Poppins/Poppins-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins/Poppins-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/fonts/Poppins/Poppins-ExtraBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins/Poppins-ExtraBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/fonts/Poppins/Poppins-ExtraBoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins/Poppins-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/fonts/Poppins/Poppins-ExtraLight.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins/Poppins-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/fonts/Poppins/Poppins-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins/Poppins-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/fonts/Poppins/Poppins-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins/Poppins-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/fonts/Poppins/Poppins-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins/Poppins-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/fonts/Poppins/Poppins-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins/Poppins-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/fonts/Poppins/Poppins-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins/Poppins-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/fonts/Poppins/Poppins-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins/Poppins-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/fonts/Poppins/Poppins-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins/Poppins-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/fonts/Poppins/Poppins-SemiBold.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins/Poppins-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/fonts/Poppins/Poppins-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins/Poppins-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/fonts/Poppins/Poppins-Thin.ttf -------------------------------------------------------------------------------- /assets/fonts/Poppins/Poppins-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/fonts/Poppins/Poppins-ThinItalic.ttf -------------------------------------------------------------------------------- /assets/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/.DS_Store -------------------------------------------------------------------------------- /assets/images/backs/bg-feature-slant.svg: -------------------------------------------------------------------------------- 1 | 2 | 55 | -------------------------------------------------------------------------------- /assets/images/backs/bg-light-slant.svg: -------------------------------------------------------------------------------- 1 | 2 | 56 | -------------------------------------------------------------------------------- /assets/images/backs/blog.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/backs/blog.jpeg -------------------------------------------------------------------------------- /assets/images/backs/contact.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/backs/contact.jpg -------------------------------------------------------------------------------- /assets/images/backs/event.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/backs/event.jpeg -------------------------------------------------------------------------------- /assets/images/backs/projects.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/backs/projects.jpeg -------------------------------------------------------------------------------- /assets/images/backs/sponsors_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/backs/sponsors_bg.jpg -------------------------------------------------------------------------------- /assets/images/backs/team.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/backs/team.jpeg -------------------------------------------------------------------------------- /assets/images/backs/techy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/backs/techy.jpg -------------------------------------------------------------------------------- /assets/images/backs/web.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/backs/web.jpg -------------------------------------------------------------------------------- /assets/images/backs/webinars.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/backs/webinars.jpeg -------------------------------------------------------------------------------- /assets/images/collaborators/axure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/collaborators/axure.png -------------------------------------------------------------------------------- /assets/images/collaborators/bugsee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/collaborators/bugsee.png -------------------------------------------------------------------------------- /assets/images/collaborators/codepark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/collaborators/codepark.png -------------------------------------------------------------------------------- /assets/images/collaborators/coding_blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/collaborators/coding_blocks.png -------------------------------------------------------------------------------- /assets/images/collaborators/collegefever.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/collaborators/collegefever.png -------------------------------------------------------------------------------- /assets/images/collaborators/creativetim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/collaborators/creativetim.png -------------------------------------------------------------------------------- /assets/images/collaborators/crowdera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/collaborators/crowdera.png -------------------------------------------------------------------------------- /assets/images/collaborators/devfolio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/collaborators/devfolio.png -------------------------------------------------------------------------------- /assets/images/collaborators/gatsby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/collaborators/gatsby.png -------------------------------------------------------------------------------- /assets/images/collaborators/ihs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/collaborators/ihs.png -------------------------------------------------------------------------------- /assets/images/collaborators/jetbrains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/collaborators/jetbrains.png -------------------------------------------------------------------------------- /assets/images/collaborators/linode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/collaborators/linode.png -------------------------------------------------------------------------------- /assets/images/collaborators/matic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/collaborators/matic.png -------------------------------------------------------------------------------- /assets/images/collaborators/rosenfeld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/collaborators/rosenfeld.png -------------------------------------------------------------------------------- /assets/images/collaborators/stickermule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/collaborators/stickermule.png -------------------------------------------------------------------------------- /assets/images/collaborators/stucred.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/collaborators/stucred.png -------------------------------------------------------------------------------- /assets/images/collaborators/tech.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/collaborators/tech.png -------------------------------------------------------------------------------- /assets/images/collaborators/wolfram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/collaborators/wolfram.png -------------------------------------------------------------------------------- /assets/images/events/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/.DS_Store -------------------------------------------------------------------------------- /assets/images/events/CookOff20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/CookOff20.jpg -------------------------------------------------------------------------------- /assets/images/events/FlutterBootcamp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/FlutterBootcamp.jpg -------------------------------------------------------------------------------- /assets/images/events/IntroToAI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/IntroToAI.jpg -------------------------------------------------------------------------------- /assets/images/events/TechTalks20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/TechTalks20.jpg -------------------------------------------------------------------------------- /assets/images/events/WebApps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/WebApps.jpg -------------------------------------------------------------------------------- /assets/images/events/bigdata.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/bigdata.jpeg -------------------------------------------------------------------------------- /assets/images/events/blitz.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/blitz.jpeg -------------------------------------------------------------------------------- /assets/images/events/blockchain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/blockchain.jpg -------------------------------------------------------------------------------- /assets/images/events/codecombat.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/codecombat.jpeg -------------------------------------------------------------------------------- /assets/images/events/cook.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/cook.jpeg -------------------------------------------------------------------------------- /assets/images/events/cookoff3.0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/cookoff3.0.jpeg -------------------------------------------------------------------------------- /assets/images/events/data_analytics.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/data_analytics.jpg -------------------------------------------------------------------------------- /assets/images/events/devsoc19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/devsoc19.jpg -------------------------------------------------------------------------------- /assets/images/events/devsoc20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/devsoc20.jpg -------------------------------------------------------------------------------- /assets/images/events/error404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/error404.jpg -------------------------------------------------------------------------------- /assets/images/events/game.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/game.jpeg -------------------------------------------------------------------------------- /assets/images/events/insight.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/insight.jpeg -------------------------------------------------------------------------------- /assets/images/events/insight17.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/insight17.jpeg -------------------------------------------------------------------------------- /assets/images/events/seriesbuff.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/seriesbuff.jpeg -------------------------------------------------------------------------------- /assets/images/events/server.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/server.jpeg -------------------------------------------------------------------------------- /assets/images/events/webapps.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/webapps.jpeg -------------------------------------------------------------------------------- /assets/images/events/who-breaks-first.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/events/who-breaks-first.jpeg -------------------------------------------------------------------------------- /assets/images/group_Photos/grp1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/group_Photos/grp1.jpeg -------------------------------------------------------------------------------- /assets/images/group_Photos/grp2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/group_Photos/grp2.jpeg -------------------------------------------------------------------------------- /assets/images/group_Photos/grp3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/group_Photos/grp3.jpeg -------------------------------------------------------------------------------- /assets/images/index.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/index.jpg -------------------------------------------------------------------------------- /assets/images/logos/cclogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/logos/cclogo.png -------------------------------------------------------------------------------- /assets/images/logos/ccwhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/logos/ccwhite.png -------------------------------------------------------------------------------- /assets/images/logos/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/logos/logo.jpg -------------------------------------------------------------------------------- /assets/images/logos/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/logos/play.png -------------------------------------------------------------------------------- /assets/images/projects/2018/DEVSOC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2018/DEVSOC.jpg -------------------------------------------------------------------------------- /assets/images/projects/2018/codechef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2018/codechef.png -------------------------------------------------------------------------------- /assets/images/projects/2018/codechef16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2018/codechef16.jpg -------------------------------------------------------------------------------- /assets/images/projects/2018/codechef17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2018/codechef17.png -------------------------------------------------------------------------------- /assets/images/projects/2018/codecombat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2018/codecombat.png -------------------------------------------------------------------------------- /assets/images/projects/2018/devsoc19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2018/devsoc19.jpg -------------------------------------------------------------------------------- /assets/images/projects/2018/githubapi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2018/githubapi.jpeg -------------------------------------------------------------------------------- /assets/images/projects/2018/timer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2018/timer.png -------------------------------------------------------------------------------- /assets/images/projects/2019/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2019/Logo.png -------------------------------------------------------------------------------- /assets/images/projects/2019/devsoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2019/devsoc.png -------------------------------------------------------------------------------- /assets/images/projects/2019/devsoc20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2019/devsoc20.png -------------------------------------------------------------------------------- /assets/images/projects/2019/devsoc20app.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2019/devsoc20app.jpg -------------------------------------------------------------------------------- /assets/images/projects/2019/devsoc_admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2019/devsoc_admin.png -------------------------------------------------------------------------------- /assets/images/projects/2019/freeslot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2019/freeslot.jpeg -------------------------------------------------------------------------------- /assets/images/projects/2019/goal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2019/goal.jpg -------------------------------------------------------------------------------- /assets/images/projects/2019/recruitment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2019/recruitment.png -------------------------------------------------------------------------------- /assets/images/projects/2019/seds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2019/seds.png -------------------------------------------------------------------------------- /assets/images/projects/2019/sms_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2019/sms_app.png -------------------------------------------------------------------------------- /assets/images/projects/2019/whatsapp-groupadd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2019/whatsapp-groupadd.png -------------------------------------------------------------------------------- /assets/images/projects/2020/bookmark.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2020/bookmark.jpeg -------------------------------------------------------------------------------- /assets/images/projects/2020/cet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2020/cet.jpg -------------------------------------------------------------------------------- /assets/images/projects/2020/codechef20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2020/codechef20.png -------------------------------------------------------------------------------- /assets/images/projects/2020/codechefapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2020/codechefapp.png -------------------------------------------------------------------------------- /assets/images/projects/2020/cookoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2020/cookoff.png -------------------------------------------------------------------------------- /assets/images/projects/2020/ffcc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2020/ffcc.jpg -------------------------------------------------------------------------------- /assets/images/projects/2020/ffds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2020/ffds.png -------------------------------------------------------------------------------- /assets/images/projects/2020/interiAR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2020/interiAR.jpeg -------------------------------------------------------------------------------- /assets/images/projects/2020/leoclub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/projects/2020/leoclub.png -------------------------------------------------------------------------------- /assets/images/team/akshat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/team/akshat.jpg -------------------------------------------------------------------------------- /assets/images/team/anmol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/team/anmol.jpg -------------------------------------------------------------------------------- /assets/images/team/anuj.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/team/anuj.jpg -------------------------------------------------------------------------------- /assets/images/team/devang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/team/devang.jpg -------------------------------------------------------------------------------- /assets/images/team/dipto1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/team/dipto1.jpg -------------------------------------------------------------------------------- /assets/images/team/ishan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/team/ishan.jpg -------------------------------------------------------------------------------- /assets/images/team/kshitiz1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/team/kshitiz1.jpg -------------------------------------------------------------------------------- /assets/images/team/kunal1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/team/kunal1.jpg -------------------------------------------------------------------------------- /assets/images/team/muskan1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/team/muskan1.jpg -------------------------------------------------------------------------------- /assets/images/team/navyaa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/team/navyaa.jpg -------------------------------------------------------------------------------- /assets/images/team/nishi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/team/nishi.jpg -------------------------------------------------------------------------------- /assets/images/team/priyank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/team/priyank.jpg -------------------------------------------------------------------------------- /assets/images/team/rajat1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/team/rajat1.jpg -------------------------------------------------------------------------------- /assets/images/team/shreya.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/team/shreya.jpg -------------------------------------------------------------------------------- /assets/images/team/vansh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/team/vansh.jpg -------------------------------------------------------------------------------- /assets/images/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/title.png -------------------------------------------------------------------------------- /assets/images/webinars/cpp_Banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/webinars/cpp_Banner.jpg -------------------------------------------------------------------------------- /assets/images/webinars/git.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/webinars/git.jpg -------------------------------------------------------------------------------- /assets/images/webinars/python.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/webinars/python.jpg -------------------------------------------------------------------------------- /assets/images/webinars/reactportfolio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/webinars/reactportfolio.jpg -------------------------------------------------------------------------------- /assets/images/webinars/restapi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/webinars/restapi.jpg -------------------------------------------------------------------------------- /assets/images/webinars/webdev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeChefVIT/CodeChefVIT20/f6eb9d86cc789a793fc697dd4a171fc589ff5373/assets/images/webinars/webdev.jpg -------------------------------------------------------------------------------- /assets/js/contact.js: -------------------------------------------------------------------------------- 1 | function validateForm() { 2 | var name = document.getElementById('name'); 3 | var email = document.getElementById('email'); 4 | var phone = document.getElementById('phone'); 5 | var domain = document.getElementById('domain'); 6 | 7 | if (document.getElementById('name') && document.getElementById('email') && document.getElementById('phone') && document.getElementById('domain') && email.checkValidity() && phone.checkValidity()) { 8 | contact() 9 | } 10 | else { 11 | toastr.error('Please fill complete details!') 12 | } 13 | } 14 | function contact() { 15 | document.getElementById('signup').disable = true 16 | grecaptcha.ready(() => { 17 | grecaptcha.execute('6LebSawZAAAAAFNR2zDGbGVurB8zitlUJ4BmXANk', { 18 | action: '/' 19 | }).then((token) => { 20 | 21 | var data = { 22 | name: document.getElementById('name').value, 23 | email: document.getElementById('email').value, 24 | phone: document.getElementById('phone').value, 25 | domain: document.getElementById('domain').value, 26 | recaptcha: token 27 | } 28 | var xh = new XMLHttpRequest(); 29 | 30 | xh.open("POST", "https://backendcc.herokuapp.com/contact", true) 31 | xh.setRequestHeader('Content-Type', 'application/json') 32 | xh.send(JSON.stringify(data)) 33 | xh.onload = function () { 34 | if (this.status == 201) { 35 | toastr.success('Thanks for contacting !'); 36 | window.location.reload(); 37 | } 38 | else { 39 | toastr.error('Failed! Try again'); 40 | 41 | } 42 | } 43 | }) 44 | }) 45 | } 46 | 47 | 48 | 49 | -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- 1 | var i = 0; 2 | 3 | // JS for Navbar 4 | const nav = document.querySelector('#medNav'); 5 | const menu = document.querySelector('#menu'); 6 | const menuToggle = document.querySelector('.nav__toggle'); 7 | let isMenuOpen = false; 8 | 9 | // TOGGLE MENU ACTIVE STATE 10 | menuToggle.addEventListener('click', e => { 11 | e.preventDefault(); 12 | isMenuOpen = !isMenuOpen; 13 | 14 | // toggle a11y attributes and active class 15 | menuToggle.setAttribute('aria-expanded', String(isMenuOpen)); 16 | menu.hidden = !isMenuOpen; 17 | nav.classList.toggle('nav--open'); 18 | }); 19 | 20 | // TRAP TAB INSIDE NAV WHEN OPEN 21 | nav.addEventListener('keydown', e => { 22 | // abort if menu isn't open or modifier keys are pressed 23 | if (!isMenuOpen || e.ctrlKey || e.metaKey || e.altKey) { 24 | return; 25 | } 26 | 27 | // listen for tab press and move focus 28 | // if we're on either end of the navigation 29 | const menuLinks = menu.querySelectorAll('.nav__item'); 30 | 31 | if (e.keyCode === 9) { 32 | if (e.shiftKey) { 33 | if (document.activeElement === menuLinks[0]) { 34 | menuToggle.focus(); 35 | e.preventDefault(); 36 | } 37 | } else if (document.activeElement === menuToggle) { 38 | menuLinks[0].focus(); 39 | e.preventDefault(); 40 | } 41 | } 42 | }); 43 | 44 | // function for the "latest projects" section 45 | function tabSwitch(id) { 46 | 47 | let all = document.getElementsByClassName('project'); 48 | 49 | let elems = document.getElementsByClassName(id); 50 | 51 | let tabs = document.getElementsByClassName('tab'); 52 | 53 | for (let i = 0; i < tabs.length; i++) { 54 | tabs[i].addEventListener("click", function () { 55 | let current = document.getElementsByClassName("activep"); 56 | current[0].className = current[0].className.replace(" activep", ""); 57 | this.className += " activep"; 58 | 59 | }); 60 | } 61 | 62 | for (let i = 0; i < all.length; i++) { 63 | all[i].style.display = "block"; 64 | } 65 | 66 | for (let i = 0; i < elems.length; i++) { 67 | elems[i].style.display = "none"; 68 | 69 | } 70 | 71 | } 72 | 73 | function on() { 74 | document.getElementById("youtube-video").setAttribute("src", "https://www.youtube.com/embed/wYDTHujmThc"); 75 | document.getElementById("overlay").style.display = "block"; 76 | } 77 | 78 | function off() { 79 | document.getElementById("youtube-video").setAttribute("src", ""); 80 | document.getElementById("overlay").style.display = "none"; 81 | } 82 | 83 | tabSwitch('none'); 84 | 85 | 86 | console.clear(); 87 | -------------------------------------------------------------------------------- /assets/js/preloader.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | // Play initial animations on page load. 4 | $(function () { 5 | setTimeout(function () { 6 | $('#preloader').fadeOut('slow', function () { 7 | $(this).remove(); 8 | }); 9 | }, 2000); 10 | }); 11 | -------------------------------------------------------------------------------- /assets/js/typing.js: -------------------------------------------------------------------------------- 1 | class TypeWriter { 2 | constructor(txtElement, words, wait = 3000) { 3 | this.txtElement = txtElement; 4 | this.words = words; 5 | this.txt = ' '; 6 | this.wordIndex = 0; 7 | this.wait = parseInt(wait, 10); 8 | this.type(); 9 | this.isDeleting = false; 10 | } 11 | 12 | type() { 13 | // Current index of word 14 | const current = this.wordIndex % this.words.length; 15 | // Get full text of current word 16 | const fullTxt = this.words[current]; 17 | 18 | // Check if deleting 19 | if (this.isDeleting) { 20 | // Remove char 21 | this.txt = fullTxt.substring(0, this.txt.length - 1); 22 | } else { 23 | // Add char 24 | this.txt = fullTxt.substring(0, this.txt.length + 1); 25 | } 26 | 27 | // Insert txt into element 28 | this.txtElement.innerHTML = `${this.txt}`; 29 | 30 | // Initial Type Speed 31 | let typeSpeed = 300; 32 | 33 | if (this.isDeleting) { 34 | typeSpeed /= 2; 35 | } 36 | 37 | // If word is complete 38 | if (!this.isDeleting && this.txt === fullTxt) { 39 | // Make pause at end 40 | typeSpeed = this.wait; 41 | // Set delete to true 42 | this.isDeleting = true; 43 | } else if (this.isDeleting && this.txt === '') { 44 | this.isDeleting = false; 45 | // Move to next word 46 | this.wordIndex++; 47 | // Pause before start typing 48 | typeSpeed = 500; 49 | } 50 | 51 | setTimeout(() => this.type(), typeSpeed); 52 | } 53 | } 54 | 55 | 56 | // Init On DOM Load 57 | document.addEventListener('DOMContentLoaded', init); 58 | 59 | // Init App 60 | function init() { 61 | const txtElement = document.querySelector('.txt-type'); 62 | const words = JSON.parse(txtElement.getAttribute('data-words')); 63 | const wait = txtElement.getAttribute('data-wait'); 64 | // Init TypeWriter 65 | new TypeWriter(txtElement, words, wait); 66 | } 67 | 68 | console.clear(); -------------------------------------------------------------------------------- /assets/js/webinarScript.js: -------------------------------------------------------------------------------- 1 | // 2. This code loads the IFrame Player API code asynchronously. 2 | var tag = document.createElement('script'); 3 | 4 | tag.src = "https://www.youtube.com/iframe_api"; 5 | var firstScriptTag = document.getElementsByTagName('script')[0]; 6 | firstScriptTag.parentNode.insertBefore(tag, firstScriptTag); 7 | 8 | // 3. This function creates an