-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
78 lines (72 loc) · 3.01 KB
/
about.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
session_start();
?>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Registeration - OmniView</title>
<link rel="stylesheet" type="text/css" href="include/stylesheet.css" />
<script src="scripts/common.js"></script>
<script src="scripts/SpryTabbedPanels.js" type="text/javascript"></script>
<link href="include/SpryTabbedPanels.css" rel="stylesheet" type="text/css">
<!--[if lt IE 9]>
<script src="scripts/html5.js"></script>
<![endif]-->
</head>
<body>
<!--Begin of toppart-->
<center>
<div id="page_body" class="w800">
<header>
<?php include("include/header_logo.php"); ?>
<div class="floatr header_right_links" align=" "> <b class="lh18"><?php
echo "Welcome ";
if(isset($_SESSION['uname'])){echo $_SESSION['uname']."</b>";
echo "<br>";
echo "<a href='home.php' class='link'> Home</a><a href='logout.php' class='link'>Logout</a>";
}
else{echo "Guest<br>"."<a href='register.php'>Sign Up</a>";}
?></b><br>
</div>
</header>
<?php
//selecting navigation menus
if(isset($_SESSION['user_is_logged_in']) && $_SESSION['user_is_logged_in']==true){
include("include/header_logged_nav.php");
}
else{
include("include/header_unlogged_nav.php");
}
?>
<!--End of toppart-->
<!--begin of body - W800px-->
<div class="subpage_banner" align="left"><br />
<span>About</span></div>
<div class="container " align="left">
<img src="images/about_banner.jpg" width="600" height="200"><br>
<br>
<br>
<strong>OmniView</strong> is a fresh project for the sole purpose to help students and teachers to conduct classes outside the classes or rooms. Thus, we term and convert this purpose into a 'Virtual Classroom'. The term Virtual Classroom means conducting virtual classes in classrooms that make use of the internet technology. Our Virtual Classroom is called as <strong>OmnView</strong>.<br>
<br>
<strong>OmniView</strong> is a Web conferencing site that allows you to meet online rather than in a conference room. It's the easiest and most cost-effective way to organize and attending lectures or meetings.
<strong>Omniview</strong> is basically a virtual room where you can create a web conference or an online meeting. It aims not to use of any paper work and saves a lot of time that usually goes for travelling to the conference rooms.<br>
<br>
With OmniVIew you can organize a business meeting with your partners residing in
different places. It supports teachers' in transforming their own role and helping
students become more active learners. It helps integrate technology into the
curriculum to broaden instructional options and improve the quality of teaching as
an enhancement to the human interaction of the educational process.<br>
<br>
<strong>Omniview</strong> takes pride in building strategic long-term relationships with clients or colleagues.<br>
<br>
<br>
</div>
<!--End of body-->
</div>
<!--begin of footer-->
<?php include("include/footer.php");?>
<!--end of body - W800px-->
</center>
</body>
</html>