0% found this document useful (0 votes)
25 views

Esther Source Code

- The document is an index page that includes the header, navigation bar, date, mission statement, vision statement, and footer. - It sets the session, includes other partial files, and displays the date, links to other pages, a calendar, slider images, and information about the university's faculties. - The mission statement aims to build an enabling campus environment and train students through technology and management. The vision is to be a leading polytechnic with excellent standards and training entrepreneurial and morally sound students.

Uploaded by

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

Esther Source Code

- The document is an index page that includes the header, navigation bar, date, mission statement, vision statement, and footer. - It sets the session, includes other partial files, and displays the date, links to other pages, a calendar, slider images, and information about the university's faculties. - The mission statement aims to build an enabling campus environment and train students through technology and management. The vision is to be a leading polytechnic with excellent standards and training entrepreneurial and morally sound students.

Uploaded by

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

Index page

<?php

include('header.php');

//Start session

session_start();

//Unset the variables stored in session

unset($_SESSION['id']);

?>

<body>

<?php include('navhead.php'); ?>

<div class="container">

<div class="row-fluid">

<div class="span3">

<div class="hero-unit-3">

<div class="alert-index alert-success">

<i class="icon-calendar icon-large"></i>

<?php

$Today = date('y:m:d');

$new = date('l, F d, Y', strtotime($Today));

echo $new;

?>

</div>

</div>

<div class="hero-unit-1">

<ul class="nav nav-pills nav-stacked">


<li class="nav-header">Links</li>

<li class="active"><a href="#"><i class="icon-home icon-large"></i>&nbsp;Home

<div class="pull-right">

<i class="icon-double-angle-right icon-large"></i>

</div>

</a></li>

<li><a href="sitemap.php"><i class="icon-sitemap icon-large"></i>&nbsp;Site Map

<div class="pull-right">

<i class="icon-double-angle-right icon-large"></i>

</div>

</a></li>

<li><a href="contact.php"><i class="icon-envelope-alt icon-large"></i>&nbsp;Contact Us

<div class="pull-right">

<i class="icon-double-angle-right icon-large"></i>

</div>

</a>

</li>

<li class="nav-header">About US</li>

<li><a href="#mission" role="button" data-toggle="modal"><i class="icon-book icon-


large"></i>&nbsp;Mission

<div class="pull-right">

<i class="icon-double-angle-right icon-large"></i>

</div>

</a></li>

<li><a href="#vision" role="button" data-toggle="modal"><i class="icon-book icon-


large"></i>&nbsp;Vision

<div class="pull-right">

<i class="icon-double-angle-right icon-large"></i>

</div>
</a></li>

<li><a href="history.php"><i class="icon-list-alt icon-large"></i>&nbsp;History

<div class="pull-right">

<i class="icon-double-angle-right icon-large"></i>

</div>

</a></li>

</ul>

</div>

<br>

</div>

<div class="span9">

<section class="main">

<div class="custom-calendar-wrap">

<div id="custom-inner" class="custom-inner">

<div class="custom-header clearfix">

<nav>

<span id="custom-prev" class="custom-prev"></span>

<span id="custom-next" class="custom-next"></span>

</nav>

<h2 id="custom-month" class="custom-month"></h2>

<h3 id="custom-year" class="custom-year"></h3>

</div>

<div id="calendar" class="fc-calendar-container"></div>

</div>

</div>

</section>
<div class="alert alert-info">

<button type="button" class="close" data-dismiss="alert">&times;</button>

<strong>Head Up!</strong>&nbsp;Welcome to C++ E-Learning platform.

</div>

<!-- Include the slider images -->

<div class="slider-wrapper theme-default">

<?php include('slider.php'); ?>

</div>

<!-- end slider -->

</div>

</div>

</div>

<!---------------->

<div class="container">

<div class="row-fluid">

<div class="span12">

<div class="row-fluid">

<div class="span9">

<div class="alert alert-success"><i class="icon-file icon-large"></i>&nbsp;<strong>Mission


Statement</strong></div>

<div class="hero-unit-2">

To build an enabling campus environment and train students in technology and


management through the earned ‘Bida Standard’ for sustainable development.

</div>

</div>

<div class="span3">
<div class="alert alert-info">

<i class="icon-building icon-large"></i>&nbsp;Faculty

</div>

<div class="hero-unit-3">

<p><a href=""><i class="icon-sign-blank"></i>&nbsp;School of ICT</a></p>

<p><a href=""><i class="icon-sign-blank"></i>&nbsp;School Business Admin &


Mgmt</a></p>

<p><a href=""><i class="icon-sign-blank"></i>&nbsp;School Art & Natural Sci</a></p>

<p><a href=""><i class="icon-sign-blank"></i>&nbsp;School of Engineering</a></p>

<p><a href=""><i class="icon-sign-blank"></i>&nbsp;School of Environmental</a></p>

<p><a href=""><i class="icon-sign-blank"></i>&nbsp;School of General Studies</a></p>

</div>

</div>

</div>

</div>

</div>

<br>

<div class="alert alert-success"><i class="icon-file icon-large"></i>&nbsp;<strong>Vision


Statement</strong></div>

<div class="hero-unit-2">

A leading Polytechnic with enviable and excellent academic standard, training students to be
technologically skilled, morally sound and entrepreneurial.

</div>

<?php include('footer.php'); ?>

</div>

</div>

</div>

/body>

</html>

You might also like