122 lines
6.9 KiB
PHP
122 lines
6.9 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>University of Tomorrow | UMS</title>
|
|
<meta name="description" content="A comprehensive, modern, and intelligent University Management System (UMS) web application designed for academic institutions.">
|
|
<meta name="keywords" content="university management, student information system, course management, faculty portal, student portal, academic records, enrollment system, university ERP, higher education, Built with Flatlogic Generator">
|
|
<meta property="og:title" content="University of Tomorrow | UMS">
|
|
<meta property="og:description" content="A comprehensive, modern, and intelligent University Management System (UMS) web application designed for academic institutions.">
|
|
<meta property="og:image" content="">
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:image" content="">
|
|
|
|
<!-- Bootstrap 5 CDN -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- Bootstrap Icons CDN -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
|
<!-- Custom CSS -->
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Header -->
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow-sm sticky-top">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="#" style="color: #005A9C; font-weight: bold; font-family: Georgia, serif;">
|
|
<i class="bi bi-building"></i> University of Tomorrow
|
|
</a>
|
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav ms-auto">
|
|
<li class="nav-item"><a class="nav-link" href="#">Home</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="#courses">Courses</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="#about">About</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="#contact">Contact</a></li>
|
|
<li class="nav-item"><a class="btn btn-primary ms-lg-2" href="login.php">Student Login</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Hero Section -->
|
|
<header class="hero">
|
|
<div class="container">
|
|
<h1>Welcome to the University of Tomorrow</h1>
|
|
<p>Shaping the future of education with cutting-edge technology and world-class faculty.</p>
|
|
<a href="#courses" class="btn btn-gold">Explore Our Courses</a>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Main Content -->
|
|
<main class="container my-5">
|
|
<!-- Courses Section -->
|
|
<section id="courses" class="py-5">
|
|
<h2 class="text-center mb-5">Course Catalog</h2>
|
|
<?php
|
|
$courses = [
|
|
['code' => 'CS101', 'name' => 'Introduction to Computer Science', 'description' => 'Explore the fundamental concepts of programming, algorithms, and data structures.'],
|
|
['code' => 'PHY201', 'name' => 'Quantum Physics I', 'description' => 'Delve into the strange and fascinating world of quantum mechanics and its principles.'],
|
|
['code' => 'HIS340', 'name' => 'History of the Digital Age', 'description' => 'A survey of the technological and social history of computing and the internet.'],
|
|
['code' => 'ART110', 'name' => 'Digital Art & Design', 'description' => 'Learn the tools and techniques for creating stunning visual art in a digital medium.'],
|
|
['code' => 'BUS450', 'name' => 'Strategic Management', 'description' => 'Understand the frameworks for analyzing business strategy and competitive advantage.'],
|
|
['code' => 'LIT220', 'name' => 'Science Fiction Literature', 'description' => 'Analyze classic and contemporary works of science fiction and their cultural impact.'],
|
|
];
|
|
?>
|
|
<div class="row g-4">
|
|
<?php foreach ($courses as $course): ?>
|
|
<div class="col-md-6 col-lg-4">
|
|
<div class="card h-100 course-card">
|
|
<div class="card-header">
|
|
<?php echo htmlspecialchars($course['code']); ?>
|
|
</div>
|
|
<div class="card-body">
|
|
<h5 class="card-title"><?php echo htmlspecialchars($course['name']); ?></h5>
|
|
<p class="card-text"><?php echo htmlspecialchars($course['description']); ?></p>
|
|
</div>
|
|
<div class="card-footer bg-transparent border-top-0">
|
|
<a href="#" class="btn btn-outline-primary">Learn More</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- About Section -->
|
|
<section id="about" class="py-5 bg-light rounded my-5 p-4">
|
|
<div class="row align-items-center">
|
|
<div class="col-md-6">
|
|
<h2 class="mb-4">About Our University</h2>
|
|
<p>Founded on the principles of innovation and excellence, the University of Tomorrow is dedicated to providing a transformative education. We empower students to think critically, solve complex problems, and become leaders in their chosen fields. Our commitment to research and community engagement makes us a beacon of knowledge and progress.</p>
|
|
</div>
|
|
<div class="col-md-6 text-center">
|
|
<img src="https://via.placeholder.com/400x300.png?text=University+Campus" class="img-fluid rounded" alt="University Campus">
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
</main>
|
|
|
|
<!-- Footer -->
|
|
<footer id="contact" class="footer">
|
|
<div class="container text-center">
|
|
<p>© <?php echo date("Y"); ?> University of Tomorrow. All Rights Reserved.</p>
|
|
<div>
|
|
<a href="#" class="text-white me-3"><i class="bi bi-twitter-x"></i></a>
|
|
<a href="#" class="text-white me-3"><i class="bi bi-facebook"></i></a>
|
|
<a href="#" class="text-white me-3"><i class="bi bi-linkedin"></i></a>
|
|
<a href="#" class="text-white"><i class="bi bi-instagram"></i></a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Bootstrap 5 JS Bundle -->
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
|
|
<!-- Custom JS -->
|
|
<script src="assets/js/main.js?v=<?php echo time(); ?>"></script>
|
|
</body>
|
|
</html>
|