+ +
+
\ No newline at end of file diff --git a/_sidebar.php b/_sidebar.php new file mode 100644 index 0000000..07e3f79 --- /dev/null +++ b/_sidebar.php @@ -0,0 +1,29 @@ + \ No newline at end of file diff --git a/academic.php b/academic.php new file mode 100644 index 0000000..093d0ff --- /dev/null +++ b/academic.php @@ -0,0 +1,6 @@ + + +

Academic

+

Academic management will be implemented here.

+ + \ No newline at end of file diff --git a/alerts.php b/alerts.php new file mode 100644 index 0000000..4a8ede4 --- /dev/null +++ b/alerts.php @@ -0,0 +1,6 @@ + + +

Alert Management

+

Alert management will be implemented here.

+ + \ No newline at end of file diff --git a/analytics.php b/analytics.php new file mode 100644 index 0000000..db6d596 --- /dev/null +++ b/analytics.php @@ -0,0 +1,6 @@ + + +

Analytics

+

Analytics charts and reports will be implemented here.

+ + \ No newline at end of file diff --git a/assets/css/custom.css b/assets/css/custom.css new file mode 100644 index 0000000..85f0756 --- /dev/null +++ b/assets/css/custom.css @@ -0,0 +1,135 @@ + +:root { + --primary-color: #005A9C; + --secondary-color: #FDB813; + --background-color: #F8F9FA; + --surface-color: #FFFFFF; + --text-color: #212529; + --heading-font: 'Georgia', serif; + --body-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; +} + +body { + font-family: var(--body-font); + color: var(--text-color); + background-color: var(--background-color); +} + +h1, h2, h3, h4, h5, h6 { + font-family: var(--heading-font); + font-weight: 700; +} + +.navbar { + transition: background-color 0.3s ease-in-out; +} + +.navbar-brand { + font-family: var(--heading-font); + font-weight: bold; +} + +.navbar.scrolled { + background-color: rgba(255, 255, 255, 0.9); + box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); +} + +.hero { + position: relative; + height: 100vh; + min-height: 500px; + background: url('https://picsum.photos/seed/universityhero/1600/900') no-repeat center center; + background-size: cover; + color: white; +} + +.hero-overlay { + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + background: linear-gradient(45deg, rgba(0, 90, 156, 0.8), rgba(0, 90, 156, 0.6)); + display: flex; + align-items: center; + justify-content: center; + text-align: center; +} + +.hero .display-4 { + font-size: 3.5rem; + font-weight: 900; +} + +.btn-primary { + background-color: var(--primary-color); + border-color: var(--primary-color); + padding: 0.75rem 1.5rem; + border-radius: 0.25rem; + transition: all 0.3s ease; +} + +.btn-primary:hover { + background-color: #004170; + border-color: #004170; + transform: translateY(-2px); +} + +.btn-secondary { + background-color: var(--secondary-color); + border-color: var(--secondary-color); + color: var(--text-color); + padding: 0.75rem 1.5rem; + border-radius: 0.25rem; + transition: all 0.3s ease; +} + +.btn-secondary:hover { + background-color: #d99d0b; + border-color: #d99d0b; + transform: translateY(-2px); +} + +.section { + padding: 5rem 0; +} + +.section-title { + margin-bottom: 3rem; + font-size: 2.5rem; +} + +.card { + border: none; + border-radius: 0.5rem; + box-shadow: 0 4px 15px rgba(0,0,0,0.08); + transition: transform 0.3s ease, box-shadow 0.3s ease; +} + +.card:hover { + transform: translateY(-5px); + box-shadow: 0 8px 25px rgba(0,0,0,0.12); +} + +.testimonial-card { + background-color: var(--surface-color); +} + +.testimonial-card blockquote { + font-style: italic; +} + +.footer { + background-color: #343a40; + color: white; + padding: 3rem 0; +} + +.footer a { + color: var(--secondary-color); +} + +.footer a:hover { + color: #fff; + text-decoration: none; +} diff --git a/assets/js/main.js b/assets/js/main.js new file mode 100644 index 0000000..b439aba --- /dev/null +++ b/assets/js/main.js @@ -0,0 +1,22 @@ + +document.addEventListener('DOMContentLoaded', function () { + // Navbar scroll effect + const navbar = document.querySelector('.navbar'); + window.addEventListener('scroll', () => { + if (window.scrollY > 50) { + navbar.classList.add('scrolled'); + } else { + navbar.classList.remove('scrolled'); + } + }); + + // Smooth scrolling for anchor links + document.querySelectorAll('a[href^="#"]').forEach(anchor => { + anchor.addEventListener('click', function (e) { + e.preventDefault(); + document.querySelector(this.getAttribute('href')).scrollIntoView({ + behavior: 'smooth' + }); + }); + }); +}); diff --git a/attendance.php b/attendance.php new file mode 100644 index 0000000..6be0ab1 --- /dev/null +++ b/attendance.php @@ -0,0 +1,6 @@ + + +

Attendance

+

Attendance management will be implemented here.

+ + \ No newline at end of file diff --git a/audit.php b/audit.php new file mode 100644 index 0000000..c20edc9 --- /dev/null +++ b/audit.php @@ -0,0 +1,6 @@ + + +

Audit

+

Audit logs will be implemented here.

+ + \ No newline at end of file diff --git a/certificates.php b/certificates.php new file mode 100644 index 0000000..bea012a --- /dev/null +++ b/certificates.php @@ -0,0 +1,6 @@ + + +

Certificates

+

Certificate management will be implemented here.

+ + \ No newline at end of file diff --git a/content.php b/content.php new file mode 100644 index 0000000..b7f68ac --- /dev/null +++ b/content.php @@ -0,0 +1,6 @@ + + +

Content

+

Content management will be implemented here.

+ + \ No newline at end of file diff --git a/courses.php b/courses.php new file mode 100644 index 0000000..0a673f0 --- /dev/null +++ b/courses.php @@ -0,0 +1,6 @@ + + +

Courses

+

Course management will be implemented here.

+ + \ No newline at end of file diff --git a/dashboard.php b/dashboard.php new file mode 100644 index 0000000..340d820 --- /dev/null +++ b/dashboard.php @@ -0,0 +1,42 @@ + + +

Dashboard Overview

+

Welcome, Super Admin. From here you can manage the entire university portal.

+ +
+
+
+
+
Total Students
+

1,234

+
+
+
+
+
+
+
Revenue (Month)
+

$45,678

+
+
+
+
+
+
+
Affiliates
+

12

+
+
+
+
+
+
+
New Alerts
+

3

+
+
+
+
+

More widgets and analytics charts will be added here as we build out the features.

+ + \ No newline at end of file diff --git a/faculty.php b/faculty.php new file mode 100644 index 0000000..be4e89d --- /dev/null +++ b/faculty.php @@ -0,0 +1,6 @@ + + +

Faculty

+

Faculty management will be implemented here.

+ + \ No newline at end of file diff --git a/forms.php b/forms.php new file mode 100644 index 0000000..91a0a9a --- /dev/null +++ b/forms.php @@ -0,0 +1,6 @@ + + +

Forms

+

Form builder and management will be implemented here.

+ + \ No newline at end of file diff --git a/index.php b/index.php index 7205f3d..153ff72 100644 --- a/index.php +++ b/index.php @@ -1,150 +1,176 @@ - - + - - - New Style - - - - - - - - - - - - - - - - - - - + + + + Online University Portal + + + + + + + + + + + + + + + -
-
-

Analyzing your requirements and generating your website…

-
- Loading… -
-

AI is collecting your requirements and applying the first changes.

-

This page will update automatically as the plan is implemented.

-

Runtime: PHP — UTC

-
-
-
- Page updated: (UTC) -
+ + + + + +
+
+
+

Your Future, Redefined.

+

Join a new generation of learners at the Online University. Excellence in digital education.

+ Enroll Now +
+
+
+ + +
+
+

About Us

+
+
+ A diverse group of students collaborating in a library. +
+
+

Welcome to the Future of Learning

+

Our Online University offers a flexible, accessible, and high-quality education designed for the modern world. We are committed to providing a transformative learning experience that empowers students to achieve their personal and professional goals.

+

With world-class faculty, cutting-edge technology, and a vibrant global community, we bring the university to you, wherever you are.

+
+
+
+
+ + +
+
+

Our Programs

+
+
+
+ A student working on a laptop in a classroom. +
+
Computer Science (BSCS)
+

Explore the depths of computing, from algorithms to artificial intelligence.

+
+
+
+
+
+ Architectural model of a bridge. +
+
Computer Engineering (BSCE)
+

Bridge the gap between hardware and software, from microprocessors to operating systems.

+
+
+
+
+
+ Team collaborating on code on a whiteboard. +
+
Software Engineering (BSSE)
+

Master the art of software development and create impactful applications.

+
+
+
+
+
+
+ + +
+
+

What Our Students Say

+
+
+
+
+

"The flexibility of online learning allowed me to balance my studies with my job. The professors are amazing!"

+
Jane Doe, BSCS Graduate
+
+
+
+
+
+
+

"I never thought I'd be able to connect with so many people from around the world. It's a truly global classroom."

+
John Smith, MSE Student
+
+
+
+
+
+
+ + +
+
+

Get in Touch

+
+
+

Have questions? We'd love to hear from you. Fill out the form below and a member of our team will get back to you shortly.

+
+
+ +
+
+ +
+
+ +
+
+ +
+
+
+
+
+
+ + +
+
+
+ + + +
+

© Online University. All Rights Reserved.

+ Privacy Policy +
+
+ + + - + \ No newline at end of file diff --git a/login.php b/login.php new file mode 100644 index 0000000..3d8f8f0 --- /dev/null +++ b/login.php @@ -0,0 +1,83 @@ + + + + + + Login - Online University + + + + + + + +
+
+
+
+
+

Login

+
+
+ + +
+
+ + +
+
+ +
+
+
+
+
+
+
+ +
+
+
+
+
Online University
+

+ Providing quality education for a brighter future. +

+
+
+
Links
+ +
+
+
+
+ © 2025 Online University +
+
+ + + + + diff --git a/notifications.php b/notifications.php new file mode 100644 index 0000000..94b9860 --- /dev/null +++ b/notifications.php @@ -0,0 +1,6 @@ + + +

Notifications

+

Notification management will be implemented here.

+ + \ No newline at end of file diff --git a/payments.php b/payments.php new file mode 100644 index 0000000..e110946 --- /dev/null +++ b/payments.php @@ -0,0 +1,6 @@ + + +

Payments

+

Payment management will be implemented here.

+ + \ No newline at end of file diff --git a/plans.php b/plans.php new file mode 100644 index 0000000..9b401ea --- /dev/null +++ b/plans.php @@ -0,0 +1,6 @@ + + +

Plans

+

Plan management will be implemented here.

+ + \ No newline at end of file diff --git a/privacy.php b/privacy.php new file mode 100644 index 0000000..2928d52 --- /dev/null +++ b/privacy.php @@ -0,0 +1,19 @@ + + + + + + + Privacy Policy - Online University + + + + +
+

Privacy Policy

+

This is a placeholder for the Privacy Policy page.

+

Information on how user data is collected, used, and protected will be detailed here.

+ Go back to Home +
+ + diff --git a/results.php b/results.php new file mode 100644 index 0000000..bb12011 --- /dev/null +++ b/results.php @@ -0,0 +1,6 @@ + + +

Results

+

Result management will be implemented here.

+ + \ No newline at end of file diff --git a/settings.php b/settings.php new file mode 100644 index 0000000..fe817e7 --- /dev/null +++ b/settings.php @@ -0,0 +1,6 @@ + + +

Settings

+

Settings management will be implemented here.

+ + \ No newline at end of file diff --git a/sitemap.xml b/sitemap.xml new file mode 100644 index 0000000..296f1e4 --- /dev/null +++ b/sitemap.xml @@ -0,0 +1,18 @@ + + + + + https://your-domain.com/ + 2025-10-03T05:05:30+00:00 + 1.00 + + + https://your-domain.com/privacy.php + 2025-10-03T05:05:30+00:00 + 0.80 + + diff --git a/students.php b/students.php new file mode 100644 index 0000000..628cf08 --- /dev/null +++ b/students.php @@ -0,0 +1,6 @@ + + +

Students

+

Student management will be implemented here.

+ + \ No newline at end of file diff --git a/universities.php b/universities.php new file mode 100644 index 0000000..73d0b27 --- /dev/null +++ b/universities.php @@ -0,0 +1,6 @@ + + +

Universities

+

University management will be implemented here.

+ + \ No newline at end of file diff --git a/users.php b/users.php new file mode 100644 index 0000000..6612ab6 --- /dev/null +++ b/users.php @@ -0,0 +1,6 @@ + + +

Users & Roles

+

User and role management will be implemented here.

+ +