0% found this document useful (0 votes)
19 views15 pages

CampusConnect Phase 4

Uploaded by

Sanyam Kakkar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views15 pages

CampusConnect Phase 4

Uploaded by

Sanyam Kakkar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 15

Project Phase IV Report

On

CAMPUS CONNECT

Submitted for the requirement of

Project course

BACHELOR OF ENGINEERING

COMPUTER SCIENCE & ENGINEERING

Submitted to: Submitted By:


Manpreet Kaur (E14130)
Name UID
Shivendra Singh 20BCS7343
Akansha 20BCS7380
Raghav 20BCS2024
Sanyam Kakkar 20BCS4896

Kompal Ahluwalia 20BCS9539

Co Supervisor Signature:
Meenakshi Rana (E14673)
Richa Dhiman (E11307)
RESULTS ANALYSIS AND VALIDATION

4.1. Implementation of solution

• Analysis:

The analysis of your project reveals a strong market demand for a centralized platform offering
comprehensive exam preparation resources. By providing previous year question papers, well-
structured syllabi, and a Q&A section for guidance, your website can meet the needs of students
seeking reliable and organized materials. Differentiating your project from competitors through its
unique value proposition, you can target a specific audience and tailor the content accordingly.
Managing content acquisition and maintenance will be crucial to ensuring accurate and relevant
resources. Emphasizing user experience and intuitive design will enhance engagement and
navigation. Addressing technical infrastructure and scalability considerations is vital for
accommodating growth. Developing a monetization strategy and implementing effective
marketing and promotion techniques will help establish and sustain your project. Lastly, gathering
feedback and actively iterating based on user input will foster continuous improvement and user
satisfaction.

4.2. Project Management

• Introduction:

Our project is to develop a comprehensive website that serves as a centralized platform for
students' exam preparation needs. By providing well-structured syllabi, previous year question
papers, and a Q&A section for guidance, our website aims to assist students in effectively
preparing for their exams. With a user-friendly interface and intuitive design, students can
easily access and navigate through the resources provided. Our goal is to create a supportive
community where students can find valuable study materials, seek clarifications, and benefit
from the collective knowledge of peers and experts. Through this project, we aim to empower
students, enhance their exam preparation experience, and help them achieve academic success.

• Objectives:

The primary objectives of our project are to centralize exam preparation resources, facilitate
effective exam preparation, provide guidance and support through a Q&A section, enhance the
user experience, and ensure continuous improvement. By creating a centralized platform,
students can easily access well-structured syllabus and previous year question papers, enabling
them to focus on important topics and gain familiarity with the exam format. The Q&A section
will serve as a valuable resource for students to seek guidance and clarification. We aim to
enhance the user experience by designing a user-friendly website with intuitive navigation.
Additionally, gathering feedback and contuno improving the project based on user suggestions
will enable us to provide high-quality resources and meet the evolving needs of students.

• Technology Used:

HTML, CSS, TAILWIND CSS, BOOTSTRAP DATABASE MySQL.


• Design:
• Code Snippet:

Home Page

<?php

session_start();

if(!isset($_SESSION['loggedin']) || $_SESSION['loggedin'] !==true)


{
header("location: login.php");
}

?>

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>home</title>

<!-- font awesome cdn link -->


<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-
awesome/5.15.4/css/all.min.css">

<!-- custom css file link -->


<link rel="stylesheet" href="../CAMPUS_CONNECT/css/style.css">

</head>
<body>

<!-- header section starts -->

<header class="header">

<a href="welcome.php" class="logo"> <i class="fas fa-graduation-cap"></i>


Campus:Connect </a>

<div id="menu-btn" class="fas fa-bars"></div>

<nav class="navbar">
<ul>
<li><a href="welcome.php">home</a></li>
<li><a href="../CAMPUS_CONNECT/about.php">about</a></li>
<li><a href="#">Years +</a>
<ul>
<li><a href="../CAMPUS_CONNECT/course-1.php">Year
01</a></li>
<li><a href="../CAMPUS_CONNECT/course-2.php">Year
02</a></li>
<li><a href="../CAMPUS_CONNECT/course-3.php">Year
03</a></li>
</ul>
</li>
<li><a href="#">pages +</a>
<ul>
<li><a
href="../CAMPUS_CONNECT/teachers.php">teachers</a></li>
<li><a href="../CAMPUS_CONNECT/blog.php">blogs</a></li>
</ul>
</li>
<li><a href="../CAMPUS_CONNECT/contact.php">contact</a></li>

<li><a href="#"><?php echo "Welcome ". $_SESSION['username']?></a>


<ul>

<li><a href="logout.php">Log Out</a></li>


</ul>
</li>

</ul>

</nav>

</header>

<!-- header section ends -->

<!-- home section starts -->

<section class="home">

<div class="image">
<img src="../CAMPUS_CONNECT/images/home-img.png" alt="">
</div>

<div class="content">
<h3>your course to success</h3>
<p>Lorem ipsum dolor sit, amet consectetur adipisicing elit. Culpa
cumque neque quam amet perferendis sed rem ut tenetur porro praesentium.</p>
<a href="#" class="btn">get started</a>
</div>

</section>
<!-- home section ends -->

<!-- categories section starts -->

<section class="category">

<a href="#" class="box">


<img src="../CAMPUS_CONNECT/images/category-1.png" alt="">
<h3>computer science</h3>
</a>

<a href="#" class="box">


<img src="../CAMPUS_CONNECT/images/category-2.png" alt="">
<h3>biology & life</h3>
</a>

<a href="#" class="box">


<img src="../CAMPUS_CONNECT/images/category-3.png" alt="">
<h3>business analysis</h3>
</a>

<a href="#" class="box">


<img src="../CAMPUS_CONNECT/images/category-4.png" alt="">
<h3>social science</h3>
</a>

<a href="#" class="box">


<img src="../CAMPUS_CONNECT/images/category-5.png" alt="">
<h3>data analysis</h3>
</a>

</section>

<!-- categories section ends -->

<!-- footer section starts -->

<section class="footer">

<div class="box-container">

<div class="box">
<h3>explore</h3>
<a href="../CAMPUS_CONNECT/home.php"> <i class="fas fa-arrow-
right"></i> home </a>
<a href="../CAMPUS_CONNECT/about.php"> <i class="fas fa-arrow-
right"></i> about </a>
<a href="../CAMPUS_CONNECT/course-1.php"> <i class="fas fa-arrow-
right"></i> course-1 </a>
<a href="../CAMPUS_CONNECT/course-2.php"> <i class="fas fa-arrow-
right"></i>course-2 </a>
<a href="../CAMPUS_CONNECT/course-3.php"> <i class="fas fa-arrow-
right"></i> course-3 </a>
<a href="../CAMPUS_CONNECT/teachers.php"> <i class="fas fa-arrow-
right"></i> teachers </a>
<a href="../CAMPUS_CONNECT/blog.php"> <i class="fas fa-arrow-
right"></i> blog </a>
<a href="../CAMPUS_CONNECT/contact.php"> <i class="fas fa-arrow-
right"></i> contact </a>
</div>

<div class="box">
<h3>categories</h3>
<a href="#"> <i class="fas fa-arrow-right"></i> web design </a>
<a href="#"> <i class="fas fa-arrow-right"></i> graphic design</a>
<a href="#"> <i class="fas fa-arrow-right"></i> UI / UX design</a>
<a href="#"> <i class="fas fa-arrow-right"></i> seo marketing</a>
<a href="#"> <i class="fas fa-arrow-right"></i> digital
marketing</a>
<a href="#"> <i class="fas fa-arrow-right"></i> email marketing</a>
<a href="#"> <i class="fas fa-arrow-right"></i> all courses</a>
</div>

<div class="box">
<h3>quick links</h3>
<a href="#"> <i class="fas fa-arrow-right"></i> my account </a>
<a href="#"> <i class="fas fa-arrow-right"></i> feedback </a>
<a href="#"> <i class="fas fa-arrow-right"></i> help center </a>
<a href="#"> <i class="fas fa-arrow-right"></i> certificates </a>
<a href="#"> <i class="fas fa-arrow-right"></i> newsletter </a>
</div>

<div class="box">
<h3>follow us</h3>
<a href="#"> <i class="fab fa-facebook-f"></i> facebook </a>
<a href="#"> <i class="fab fa-twitter"></i> twitter </a>
<a href="#"> <i class="fab fa-linkedin"></i> linkedin </a>
<a href="#"> <i class="fab fa-instagram"></i> instagram </a>
<a href="#"> <i class="fab fa-pinterest"></i> pinterest </a>
<a href="#"> <i class="fab fa-github"></i> github </a>
</div>

</div>

<div class="credit"> created by <span>MADE WITH ❤</span> | all rights


reserved! </div>

</section>

<!-- footer section ends -->


<!-- custom js file link -->
<script src="js/script.js"></script>

</body>
</html>

• Screenshot:

Register Page

Sign In Page
Landing Page

About

Year Of Study
Open and Download option

Contact Us
• Outcome:

The outcome of our project is expected to yield several positive impacts. Students will
benefit from improved exam preparation through access to well-structured syllabi, previous
year question papers, and guidance provided in the Q&A section. This comprehensive set
of resources will enhance their understanding, boost their confidence, and improve their
performance in exams. By having a centralized platform, students can efficiently plan their
study schedules, focusing on the most important topics. Moreover, the project will foster a
supportive learning community, where students can seek guidance, clarify doubts, and
engage with peers. Through continuous user feedback and updates, the project will evolve
to meet the changing needs of students, ensuring its ongoing relevance and value.
Ultimately, the outcome of our project aims to empower students, enhance their exam
preparation experience, and contribute to their academic success.

You might also like