-
diff --git a/Chatbot/chat.css b/Chatbot/chat.css deleted file mode 100644 index 018ff4b..0000000 --- a/Chatbot/chat.css +++ /dev/null @@ -1,199 +0,0 @@ -@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap'); - -* { - margin: 0; - padding: 0; - box-sizing: border-box; - font-family: "Poppins", sans-serif; -} -body { - background: #E3F2FD; -} -.chatbot-toggler { - position: fixed; - bottom: 30px; - right: 35px; - outline: none; - border: none; - height: 50px; - width: 50px; - display: flex; - cursor: pointer; - align-items: center; - justify-content: center; - border-radius: 50%; - background: rgb(80, 183, 218); - transition: all 0.2s ease; -} -.chatbot-toggler:hover{ - background: #add8e6; -} -body.show-chatbot .chatbot-toggler { - transform: rotate(90deg); -} -.chatbot-toggler span { - color: #fff; - position: absolute; -} -.chatbot-toggler span:last-child, -body.show-chatbot .chatbot-toggler span:first-child { - opacity: 0; -} -body.show-chatbot .chatbot-toggler span:last-child { - opacity: 1; -} -.chatbot { - position: fixed; - right: 35px; - bottom: 90px; - width: 420px; - background: #fff; - border-radius: 15px; - overflow: hidden; - opacity: 0; - pointer-events: none; - transform: scale(0.5); - transform-origin: bottom right; - box-shadow: 0 0 128px 0 rgba(0,0,0,0.1), - 0 32px 64px -48px rgba(0,0,0,0.5); - transition: all 0.1s ease; -} -body.show-chatbot .chatbot { - opacity: 1; - pointer-events: auto; - transform: scale(1); -} -.chatbot header { - padding: 16px 0; - position: relative; - text-align: center; - color: #fff; - background: #add8e6; - box-shadow: 0 2px 10px rgba(0,0,0,0.1); -} -.chatbot header span { - position: absolute; - right: 15px; - top: 50%; - display: none; - cursor: pointer; - transform: translateY(-50%); -} -header h2 { - font-size: 1.4rem; -} -.chatbot .chatbox { - overflow-y: auto; - height: 510px; - padding: 30px 20px 100px; -} -.chatbot :where(.chatbox, textarea)::-webkit-scrollbar { - width: 6px; -} -.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-track { - background: #fff; - border-radius: 25px; -} -.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-thumb { - background: #ccc; - border-radius: 25px; -} -.chatbox .chat { - display: flex; - list-style: none; -} -.chatbox .outgoing { - margin: 20px 0; - justify-content: flex-end; -} -.chatbox .incoming span { - width: 32px; - height: 32px; - color: #fff; - cursor: default; - text-align: center; - line-height: 32px; - align-self: flex-end; - background: #add8e6; - border-radius: 4px; - margin: 0 10px 7px 0; -} -.chatbox .chat p { - white-space: pre-wrap; - padding: 12px 16px; - border-radius: 10px 10px 0 10px; - max-width: 75%; - color: #fff; - font-size: 0.95rem; - background: #add8e6; - -} -.chatbox .incoming p { - border-radius: 10px 10px 10px 0; -} -.chatbox .chat p.error { - color: #721c24; - background: #f8d7da; -} -.chatbox .incoming p { - color: #000; - background: #f2f2f2; -} -.chatbot .chat-input { - display: flex; - gap: 5px; - position: absolute; - bottom: 0; - width: 100%; - background: #fff; - padding: 3px 20px; - border-top: 1px solid #ddd; -} -.chat-input textarea { - height: 55px; - width: 100%; - border: none; - outline: none; - resize: none; - max-height: 180px; - padding: 15px 15px 15px 0; - font-size: 0.95rem; -} -.chat-input span { - align-self: flex-end; - background: #add8e6; - - cursor: pointer; - height: 55px; - display: flex; - align-items: center; - visibility: hidden; - font-size: 1.35rem; -} -.chat-input textarea:valid ~ span { - visibility: visible; -} - -@media (max-width: 490px) { - .chatbot-toggler { - right: 20px; - bottom: 20px; - } - .chatbot { - right: 0; - bottom: 0; - height: 100%; - border-radius: 0; - width: 100%; - } - .chatbot .chatbox { - height: 90%; - padding: 25px 15px 100px; - } - .chatbot .chat-input { - padding: 5px 15px; - } - .chatbot header span { - display: block; - } -} \ No newline at end of file diff --git a/Chatbot/chat.js b/Chatbot/chat.js deleted file mode 100644 index 0f72b7d..0000000 --- a/Chatbot/chat.js +++ /dev/null @@ -1,73 +0,0 @@ -const chatbotToggler = document.querySelector(".chatbot-toggler"); -const closeBtn = document.querySelector(".close-btn"); -const chatbox = document.querySelector(".chatbox"); -const chatInput = document.querySelector(".chat-input textarea"); -const sendChatBtn = document.querySelector(".chat-input span"); - -let userMessage = null; - -const faqData = { - "How can I view the products?": "Go to our 'SERVICES' page", - "Where can I find about startups": "Go to our 'SERVICES' page", - "How are you?": "I am fine! How can I help you?", - "I am feeling stressed!":"No need to worry, we've got your back! Just go to CALM ZONE and Relax!" -}; - -const inputInitHeight = chatInput.scrollHeight; - -const createChatLi = (message, className) => { - const chatLi = document.createElement("li"); - chatLi.classList.add("chat", `${className}`); - let chatContent = className === "outgoing" ? `
` : `smart_toy`; - chatLi.innerHTML = chatContent; - chatLi.querySelector("p").textContent = message; - return chatLi; -} - -const generateResponse = (chatElement) => { - const messageElement = chatElement.querySelector("p"); - - const answer = faqData[userMessage]; - - if (answer) { - messageElement.textContent = answer; - } else { - messageElement.textContent = "Sorry, I couldn't find an answer to that question."; - } - - chatbox.scrollTo(0, chatbox.scrollHeight); -} - -const handleChat = () => { - userMessage = chatInput.value.trim(); - if (!userMessage) return; - - chatInput.value = ""; - chatInput.style.height = `${inputInitHeight}px`; - - chatbox.appendChild(createChatLi(userMessage, "outgoing")); - chatbox.scrollTo(0, chatbox.scrollHeight); - - setTimeout(() => { - const incomingChatLi = createChatLi("Thinking...", "incoming"); - chatbox.appendChild(incomingChatLi); - chatbox.scrollTo(0, chatbox.scrollHeight); - generateResponse(incomingChatLi); - }, 600); -} - -chatInput.addEventListener("input", () => { - chatInput.style.height = `${inputInitHeight}px`; - chatInput.style.height = `${chatInput.scrollHeight}px`; -}); - -chatInput.addEventListener("keydown", (e) => { - if (e.key === "Enter" && !e.shiftKey && window.innerWidth > 800) { - e.preventDefault(); - handleChat(); - } -}); - -sendChatBtn.addEventListener("click", handleChat); -closeBtn.addEventListener("click", () => document.body.classList.remove("show-chatbot")); -chatbotToggler.addEventListener("click", () => document.body.classList.toggle("show-chatbot")); diff --git a/Contributors/Chatbot/chat.css b/Contributors/Chatbot/chat.css deleted file mode 100644 index 018ff4b..0000000 --- a/Contributors/Chatbot/chat.css +++ /dev/null @@ -1,199 +0,0 @@ -@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap'); - -* { - margin: 0; - padding: 0; - box-sizing: border-box; - font-family: "Poppins", sans-serif; -} -body { - background: #E3F2FD; -} -.chatbot-toggler { - position: fixed; - bottom: 30px; - right: 35px; - outline: none; - border: none; - height: 50px; - width: 50px; - display: flex; - cursor: pointer; - align-items: center; - justify-content: center; - border-radius: 50%; - background: rgb(80, 183, 218); - transition: all 0.2s ease; -} -.chatbot-toggler:hover{ - background: #add8e6; -} -body.show-chatbot .chatbot-toggler { - transform: rotate(90deg); -} -.chatbot-toggler span { - color: #fff; - position: absolute; -} -.chatbot-toggler span:last-child, -body.show-chatbot .chatbot-toggler span:first-child { - opacity: 0; -} -body.show-chatbot .chatbot-toggler span:last-child { - opacity: 1; -} -.chatbot { - position: fixed; - right: 35px; - bottom: 90px; - width: 420px; - background: #fff; - border-radius: 15px; - overflow: hidden; - opacity: 0; - pointer-events: none; - transform: scale(0.5); - transform-origin: bottom right; - box-shadow: 0 0 128px 0 rgba(0,0,0,0.1), - 0 32px 64px -48px rgba(0,0,0,0.5); - transition: all 0.1s ease; -} -body.show-chatbot .chatbot { - opacity: 1; - pointer-events: auto; - transform: scale(1); -} -.chatbot header { - padding: 16px 0; - position: relative; - text-align: center; - color: #fff; - background: #add8e6; - box-shadow: 0 2px 10px rgba(0,0,0,0.1); -} -.chatbot header span { - position: absolute; - right: 15px; - top: 50%; - display: none; - cursor: pointer; - transform: translateY(-50%); -} -header h2 { - font-size: 1.4rem; -} -.chatbot .chatbox { - overflow-y: auto; - height: 510px; - padding: 30px 20px 100px; -} -.chatbot :where(.chatbox, textarea)::-webkit-scrollbar { - width: 6px; -} -.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-track { - background: #fff; - border-radius: 25px; -} -.chatbot :where(.chatbox, textarea)::-webkit-scrollbar-thumb { - background: #ccc; - border-radius: 25px; -} -.chatbox .chat { - display: flex; - list-style: none; -} -.chatbox .outgoing { - margin: 20px 0; - justify-content: flex-end; -} -.chatbox .incoming span { - width: 32px; - height: 32px; - color: #fff; - cursor: default; - text-align: center; - line-height: 32px; - align-self: flex-end; - background: #add8e6; - border-radius: 4px; - margin: 0 10px 7px 0; -} -.chatbox .chat p { - white-space: pre-wrap; - padding: 12px 16px; - border-radius: 10px 10px 0 10px; - max-width: 75%; - color: #fff; - font-size: 0.95rem; - background: #add8e6; - -} -.chatbox .incoming p { - border-radius: 10px 10px 10px 0; -} -.chatbox .chat p.error { - color: #721c24; - background: #f8d7da; -} -.chatbox .incoming p { - color: #000; - background: #f2f2f2; -} -.chatbot .chat-input { - display: flex; - gap: 5px; - position: absolute; - bottom: 0; - width: 100%; - background: #fff; - padding: 3px 20px; - border-top: 1px solid #ddd; -} -.chat-input textarea { - height: 55px; - width: 100%; - border: none; - outline: none; - resize: none; - max-height: 180px; - padding: 15px 15px 15px 0; - font-size: 0.95rem; -} -.chat-input span { - align-self: flex-end; - background: #add8e6; - - cursor: pointer; - height: 55px; - display: flex; - align-items: center; - visibility: hidden; - font-size: 1.35rem; -} -.chat-input textarea:valid ~ span { - visibility: visible; -} - -@media (max-width: 490px) { - .chatbot-toggler { - right: 20px; - bottom: 20px; - } - .chatbot { - right: 0; - bottom: 0; - height: 100%; - border-radius: 0; - width: 100%; - } - .chatbot .chatbox { - height: 90%; - padding: 25px 15px 100px; - } - .chatbot .chat-input { - padding: 5px 15px; - } - .chatbot header span { - display: block; - } -} \ No newline at end of file diff --git a/Contributors/Chatbot/chat.js b/Contributors/Chatbot/chat.js deleted file mode 100644 index 0f72b7d..0000000 --- a/Contributors/Chatbot/chat.js +++ /dev/null @@ -1,73 +0,0 @@ -const chatbotToggler = document.querySelector(".chatbot-toggler"); -const closeBtn = document.querySelector(".close-btn"); -const chatbox = document.querySelector(".chatbox"); -const chatInput = document.querySelector(".chat-input textarea"); -const sendChatBtn = document.querySelector(".chat-input span"); - -let userMessage = null; - -const faqData = { - "How can I view the products?": "Go to our 'SERVICES' page", - "Where can I find about startups": "Go to our 'SERVICES' page", - "How are you?": "I am fine! How can I help you?", - "I am feeling stressed!":"No need to worry, we've got your back! Just go to CALM ZONE and Relax!" -}; - -const inputInitHeight = chatInput.scrollHeight; - -const createChatLi = (message, className) => { - const chatLi = document.createElement("li"); - chatLi.classList.add("chat", `${className}`); - let chatContent = className === "outgoing" ? `` : `smart_toy`; - chatLi.innerHTML = chatContent; - chatLi.querySelector("p").textContent = message; - return chatLi; -} - -const generateResponse = (chatElement) => { - const messageElement = chatElement.querySelector("p"); - - const answer = faqData[userMessage]; - - if (answer) { - messageElement.textContent = answer; - } else { - messageElement.textContent = "Sorry, I couldn't find an answer to that question."; - } - - chatbox.scrollTo(0, chatbox.scrollHeight); -} - -const handleChat = () => { - userMessage = chatInput.value.trim(); - if (!userMessage) return; - - chatInput.value = ""; - chatInput.style.height = `${inputInitHeight}px`; - - chatbox.appendChild(createChatLi(userMessage, "outgoing")); - chatbox.scrollTo(0, chatbox.scrollHeight); - - setTimeout(() => { - const incomingChatLi = createChatLi("Thinking...", "incoming"); - chatbox.appendChild(incomingChatLi); - chatbox.scrollTo(0, chatbox.scrollHeight); - generateResponse(incomingChatLi); - }, 600); -} - -chatInput.addEventListener("input", () => { - chatInput.style.height = `${inputInitHeight}px`; - chatInput.style.height = `${chatInput.scrollHeight}px`; -}); - -chatInput.addEventListener("keydown", (e) => { - if (e.key === "Enter" && !e.shiftKey && window.innerWidth > 800) { - e.preventDefault(); - handleChat(); - } -}); - -sendChatBtn.addEventListener("click", handleChat); -closeBtn.addEventListener("click", () => document.body.classList.remove("show-chatbot")); -chatbotToggler.addEventListener("click", () => document.body.classList.toggle("show-chatbot")); diff --git a/Contributors/New Background.jpeg b/Contributors/New Background.jpeg deleted file mode 100644 index 894cb54..0000000 Binary files a/Contributors/New Background.jpeg and /dev/null differ diff --git a/Contributors/contributor.html b/Contributors/contributor.html deleted file mode 100644 index 4e18ea7..0000000 --- a/Contributors/contributor.html +++ /dev/null @@ -1,336 +0,0 @@ - - - - - - -Hi there 👋
How can I help you today?
Understand JavaScript to create dynamic and interactive websites.
+ Learn More +Get started with React, a powerful JavaScript library for building UI.
+ Learn More +Learn Python, a versatile programming language used for web, data, and AI.
+ Learn More +Master SQL for database management and querying structured data.
+ Learn More +Learn Node.js, a powerful JavaScript runtime for server-side programming.
+ Learn More +We offer a range of services including software development, web design, and IT consulting. We also provide customized training and support for businesses looking to integrate new technologies.
+You can reach our support team by email at support@example.com or by calling our helpline at +1234567890. We are available 24/7 to assist you with any inquiries.
+Yes, we have a wide variety of tutorials available on our website. We also offer free resources like ebooks and webinars that cover a variety of tech topics, ranging from programming to cloud computing.
+The timeline for a project depends on its complexity. Simple projects may take a few weeks, while more complex ones could take a few months. We will provide you with a detailed project timeline during the initial consultation.
+We strive for customer satisfaction. If you are not satisfied with our work, please contact us within 30 days of delivery, and we will do our best to resolve the issue. Refunds are available depending on the nature of the project.
+Yes, we provide our services globally. We have clients from various parts of the world, and our team is equipped to work with clients across different time zones.
+Yes, we offer discounts for long-term clients and bulk projects. Please contact us to discuss the details of potential discounts and packages.
+We specialize in modern web technologies including HTML, CSS, JavaScript, React, Node.js, and Python. We also have expertise in mobile development (iOS and Android) and cloud platforms like AWS and Google Cloud.
+To get started, simply fill out the contact form on our website or email us at contact@example.com. Our team will get in touch with you to discuss your requirements and provide a quote.
+You can stay updated by subscribing to our newsletter. You can also follow us on social media platforms like Facebook, Twitter, and LinkedIn for the latest news, updates, and offers.
+Don't have an account? Sign Up
+
-
- Dive into the fascinating world of economics with our comprehensive Principles of Economics course. Explore the fundamental concepts and theories that drive economies globally, including supply and demand, market structures, and fiscal policies. This course is designed to equip you with a solid understanding of economic principles, enabling you to analyze real-world economic issues and make informed decisions. With interactive lessons, engaging readings, and challenging quizzes.
- 24-04-2024 -
-
- Hi there 👋
How can I help you today?
Copyright Year: 2016
-ISBN 13: 9781946135162
-Publisher: University of Minnesota Libraries Publishing
-Language: English
-Hi there 👋
How can I help you today?
22-04-2024
-45 likes
-
- Lorem ipsum dolor, sit amet consectetur adipisicing elit. Vero itaque ab esse animi ducimus totam commodi earum debitis! Numquam velit perferendis accusantium consequatur saepe magni tenetur ducimus doloremque ex sequi!
-Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque asperiores rem, sunt sequi pariatur quae corporis voluptatem corrupti aliquam ducimus, nobis, deleniti nam accusantium adipisci? Consequuntur molestiae porro iure aperiam.
-Hi there 👋
How can I help you today?
30-04-2024
-45 likes
-
- Lorem ipsum dolor, sit amet consectetur adipisicing elit. Vero itaque ab esse animi ducimus totam commodi earum debitis! Numquam velit perferendis accusantium consequatur saepe magni tenetur ducimus doloremque ex sequi!
-Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque asperiores rem, sunt sequi pariatur quae corporis voluptatem corrupti aliquam ducimus, nobis, deleniti nam accusantium adipisci? Consequuntur molestiae porro iure aperiam.
-Hi there 👋
How can I help you today?
22-05-2024
-45 likes
-
- Lorem ipsum dolor, sit amet consectetur adipisicing elit. Vero itaque ab esse animi ducimus totam commodi earum debitis! Numquam velit perferendis accusantium consequatur saepe magni tenetur ducimus doloremque ex sequi!
-Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque asperiores rem, sunt sequi pariatur quae corporis voluptatem corrupti aliquam ducimus, nobis, deleniti nam accusantium adipisci? Consequuntur molestiae porro iure aperiam.
-Hi there 👋
How can I help you today?
22-06-2024
-40 likes
-
- Lorem ipsum dolor, sit amet consectetur adipisicing elit. Vero itaque ab esse animi ducimus totam commodi earum debitis! Numquam velit perferendis accusantium consequatur saepe magni tenetur ducimus doloremque ex sequi!
-Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque asperiores rem, sunt sequi pariatur quae corporis voluptatem corrupti aliquam ducimus, nobis, deleniti nam accusantium adipisci? Consequuntur molestiae porro iure aperiam.
-Hi there 👋
How can I help you today?
23-05-2024
-45 likes
-
- Lorem ipsum dolor, sit amet consectetur adipisicing elit. Vero itaque ab esse animi ducimus totam commodi earum debitis! Numquam velit perferendis accusantium consequatur saepe magni tenetur ducimus doloremque ex sequi!
-Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque asperiores rem, sunt sequi pariatur quae corporis voluptatem corrupti aliquam ducimus, nobis, deleniti nam accusantium adipisci? Consequuntur molestiae porro iure aperiam.
-Hi there 👋
How can I help you today?
22-06-2024
-45 likes
-
- Lorem ipsum dolor, sit amet consectetur adipisicing elit. Vero itaque ab esse animi ducimus totam commodi earum debitis! Numquam velit perferendis accusantium consequatur saepe magni tenetur ducimus doloremque ex sequi!
-Lorem ipsum dolor sit amet consectetur adipisicing elit. Itaque asperiores rem, sunt sequi pariatur quae corporis voluptatem corrupti aliquam ducimus, nobis, deleniti nam accusantium adipisci? Consequuntur molestiae porro iure aperiam.
-Hi there 👋
How can I help you today?
Learn more about who we are and what we do.
+We aim to provide high-quality resources and tools to help learners and professionals achieve their goals efficiently.
+To be a leading platform in education and development, inspiring creativity and innovation worldwide.
+Our team comprises passionate educators, developers, and designers who strive to create impactful solutions for our users.
+Email: support@example.com
+Phone: +1234567890
+Address: 123 Tech Lane, Silicon Valley, CA
+Hi there 👋
How can I help you today?
Empowering students with expert-led courses, flexible learning, and interactive resources. + Unlock your potential + and achieve academic success with us!
+ + +Learn from the best with courses designed by industry experts.
+Study at your own pace with self-paced and live learning options.
+Engage with quizzes, projects, and peer collaborations for better learning.
+
- Dear Student,
-College is an exciting chapter filled with opportunities for growth, learning, and self-discovery. As you navigate this journey, I encourage you to embrace every experience with an open mind and a courageous spirit.
-Amidst the challenges of coursework, exams, and deadlines, remember to prioritize your well-being. Take breaks when needed, seek support from friends and mentors, and cultivate healthy habits that nourish your mind, body, and soul.
-It's natural to encounter obstacles along the way, but don't let setbacks deter you from pursuing your dreams. Use them as opportunities to learn, adapt, and grow stronger. Your resilience and determination will propel you forward, even in the face of adversity.
-College is not just about academics; it's also about exploration and discovery. Take advantage of extracurricular activities, internships, and study abroad programs to broaden your horizons and discover new passions.
-But amidst all the excitement, remember to stay true to yourself. Define your own path and pursue what truly inspires you. Your college experience is a journey of self-discovery, so don't be afraid to explore different paths and embrace your unique identity.
-Above all, cherish the friendships and memories you create along the way. College is a time to forge lifelong connections and create unforgettable moments that will shape your future.
-As you embark on this adventure, know that you have the potential to achieve greatness. Believe in yourself, stay focused on your goals, and never underestimate the power of your dreams.
-Hi there 👋
How can I help you today?
Hi there 👋
How can I help you today?
Welcome to STUDENTIFY, your ultimate destination for unlocking your full academic potential and expanding your horizons. At Studentify, we understand the importance of education and the pursuit of knowledge as vital pillars for personal and professional growth. Our mission is to empower students like you to achieve excellence by offering a comprehensive range of resources and courses tailored to your needs.
-With a team of dedicated educators, industry experts, and passionate individuals, we strive to create a dynamic learning environment that fosters curiosity, critical thinking, and creativity. Whether you're looking to enhance your understanding of a specific subject, prepare for standardized tests, or explore new areas of interest, we have you covered.
-
- What sets us apart is our commitment to quality and innovation. Our courses are meticulously designed to deliver engaging and interactive learning experiences that cater to diverse learning styles. From video lectures and interactive quizzes to hands-on projects and peer collaboration, we leverage cutting-edge technology and pedagogical best practices to ensure that you receive the highest caliber of education. -
-Moreover, we understand that education should be accessible to everyone, regardless of their background or circumstances. That's why we offer flexible learning options, including self-paced courses, live sessions, and personalized tutoring, allowing you to learn at your own pace and convenience. -
-At STUDENTIFY, we believe that education is not just about acquiring knowledge but also about fostering personal growth and empowering individuals to make a positive impact on the world. Join us on this transformative journey, and let's unlock your full potential together.
-Hi there 👋
How can I help you today?
Hi there 👋
How can I help you today?
-
-
-
-
- Explore Courses
-
- Hi there 👋
How can I help you today?
- STUDENTIFY , which is instrumental for self-actualisation, - provides opportunities for a life-long learning. -
-- The STUDENTIFY provides all the courses from university - level (Both UG and PG) -
-No, only limited to INDIA.
-- There is no specific eligibility / age criterion for any of - the online courses. The faculty of a particular course may - recommend some basic knowledge of certain topics for a - person to fully grasp the contents of a course. Anyone may - join an online course and register for the exam. -
-- The courses delivered through STUDENTIFY are available free - of cost to the learners. -
-The STUDENTIFY shall also cover Skill based courses.
-- Go to the official website and click on "Sign-In" to - register yourself. -
-- Click "forgot password" option and follow steps to - retrieve/recreate your password. -
-- After you have search a category or a keyword, a list of - courses will appear. You may click the course-title of the - course that you find suitable, detailed course-page of that - course would appear. -
-- Go through the Course-page and check the eligibility and - other information. -
-Yes, you can.
-Yes, you can search a course on a specific topic.
-- In the Course-page, all the details of the eligibility are - mentioned. -
-- Yes, you can enroll in multiple courses on STUDENTIFY after - registration. -
-- For participation in a course which is a scheduled course, - students cannot enroll after the course is started. For a - Self-paced course there is no deadline. -
-Yes, It can be done!
-- You would need an active internet connection to consume - course contents. -
-- Yes provided faculty has given the download access to the - students. -
-Welcome to STUDENT-IFY. Your privacy is important to us. This Privacy Policy explains how we collect, use, and protect your personal information when you use our website.
- -We may collect the following types of information:
-We use the information we collect for the following purposes:
-We do not sell or share your personal information with third parties, except in the following cases:
-You have the right to:
-We use cookies to enhance your browsing experience. You can adjust your browser settings to refuse cookies if you prefer.
- -We may update this Privacy Policy from time to time. We encourage you to review this page periodically for any changes.
- -If you have any questions or concerns about this Privacy Policy, please contact us at support@studentify.com.
-Hi there 👋
How can I help you today?
Please Log-In / Register to continue !
-Hi there 👋
How can I help you today?
-
-
-
-
-
-
-
-
- Hi there 👋
How can I help you today?
Welcome to STUDENT-IFY. Your privacy is important to us. This Privacy Policy explains how we collect, use, and protect your personal information when you use our website.
- -We may collect the following types of information:
-We use the information we collect for the following purposes:
-We do not sell or share your personal information with third parties, except in the following cases:
-You have the right to:
-We use cookies to enhance your browsing experience. You can adjust your browser settings to refuse cookies if you prefer.
- -We may update this Privacy Policy from time to time. We encourage you to review this page periodically for any changes.
- -If you have any questions or concerns about this Privacy Policy, please contact us at support@studentify.com.
-Hi there 👋
How can I help you today?
+ Computer Science Student | University of XYZ
+Hello! I am a passionate Computer Science student specializing in web development and data science. I enjoy building interactive web applications and exploring new technologies.
+Degree: Bachelor of Computer Science
+GPA: 3.8/4.0
+Current Year: Final Year
+Welcome to Studentify! By accessing or using our platform, you agree to comply with these Terms of Service ("Terms"). These Terms govern your use of the services, resources, and features provided by STUDENTIFY. If you do not agree with these Terms, please refrain from using the Platform.
-Our services are intended for students and individuals seeking educational resources. By using the Platform, you affirm that you are at least 13 years old or have the consent of a parent or legal guardian if you are under 18.
-Users may need to create an account to access certain features. You are responsible for maintaining the confidentiality of your account credentials and for all activities under your account. Notify us immediately if you suspect unauthorized use of your account.
-You agree to use the Platform responsibly and in compliance with all applicable laws. Prohibited activities include, but are not limited to: -
All content provided by the Platform, including but not limited to courses, resources, and materials, is the property of Studentify or its licensors. Users retain ownership of content they submit but grant Studentify a non-exclusive license to use, modify, and display such content for Platform-related purposes.
-If the Platform offers paid services or courses, all fees will be clearly stated. Refunds are subject to our refund policy, which will be outlined in the service details.
-Your privacy is important to us. Our Privacy Policy governs the collection, use, and storage of your data. By using the Platform, you consent to such practices as outlined in the Privacy Policy.
-STUDENTIFY is not responsible for: -
We reserve the right to suspend or terminate your account or access to the Platform at any time, with or without notice, for violating these Terms or engaging in prohibited conduct.
-We may revise these Terms from time to time. Updates will be posted on this page, and continued use of the Platform constitutes acceptance of the revised Terms.
-Hi there 👋
How can I help you today?