-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
173 lines (158 loc) · 5.93 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html>
<head>
<title>About</title>
<link href="about/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<!-- Fonts -->
<link href="about/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="about/css/animate.css" rel="stylesheet" />
<!--<link rel="stylesheet" href="assets/css/main.css" />-->
<!-- Squad theme CSS -->
<link href="about/css/style.css" rel="stylesheet">
<link href="about/color/default.css" rel="stylesheet">
<script src="about/js/jquery.min.js"></script>
<script src="about/js/bootstrap.min.js"></script>
<script src="about/js/jquery.easing.min.js"></script>
<script src="about/js/jquery.scrollTo.js"></script>
<script src="about/js/wow.min.js"></script>
<!-- Custom Theme JavaScript -->
<script src="about/js/custom.js"></script>
</head>
<body>
<?php include_once 'header.php';
//echo "header about";?>
<header id="header">
<?//php echo "header header"; ?>
<a class="logo" href="index.php">RTI</a>
<nav>
<?php
session_start();
if(isset($_SESSION['access_token']))
{
$FName=$_SESSION['givenName'];
echo "<a href='profile.php'>$FName</a>";
}
else{
echo "<a href='login.php'>SignIn</a>";
}
?>
<a href="#menu">Menu</a>
</nav>
</header>
<!-- Nav -->
<nav id="menu">
<ul class="links">
<li><a href="index.php">Home</a></li>
<?php
/* if(isset($_SESSION["access_token"]))
{
echo "<li><a href='rti_form/rti_form.html'>Apply Now</a></li>";
}
else{
echo "<li><a href='login.php'>Apply Now</a></li>";
} */
?>
<li><a href='rti_form/rtiform.php'>Apply Now</a></li>
<li><a href="find.php">Find RTI</a></li>
<li><a href="about.php">About Us</a></li>
<li><a href="contact.php">Contact Us</a></li>
<?php
//session_start();
if(isset($_SESSION['access_token']))
{
echo "<li><a href='logout.php'>Logout</a></li>";
}
else{
echo "<li><a href='login.php'>SignIn</a></li>";
}
?>
<!--<li><a href="#">SignUp</a></li> -->
</ul>
</nav>
<div id="heading" >
<h1>About Us</h1>
</div>
<section id="main" class="wrapper">
<div class="inner">
<div class="content">
<header>
<center><h2>Our Motto</h2></center>
</header>
<p>Our motto is to Provide a platform to People of india. Where they can upload their Previous RTI replies from government. So, Other people can view it and save their Time and Money.</p>
</div>
</div>
</section>
<!-- Section: about
<section id="about" class="home-section text-center">
<div class="heading-about">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="wow bounceInDown" data-wow-delay="0.4s">
<div class="section-heading">
<h2>Our Team</h2>
<i class="fa fa-2x fa-angle-down"></i>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-lg-2 col-lg-offset-5">
<hr class="marginbot-50">
</div>
</div>
<div class="row">
<div class="col-md-3">
<div class="wow bounceInUp" data-wow-delay="0.2s">
<div class="team boxed-grey">
<div class="inner">
<h5>Anna Hanaceck</h5>
<p class="subtitle">Pixel Crafter</p>
<div class="avatar"><img src="about/img/team/1.jpg" alt="" class="img-responsive img-circle" /></div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="wow bounceInUp" data-wow-delay="0.5s">
<div class="team boxed-grey">
<div class="inner">
<h5>Maura Daniels</h5>
<p class="subtitle">Ruby on Rails</p>
<div class="avatar"><img src="about/img/team/2.jpg" alt="" class="img-responsive img-circle" /></div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="wow bounceInUp" data-wow-delay="0.8s">
<div class="team boxed-grey">
<div class="inner">
<h5>Jack Briane</h5>
<p class="subtitle">jQuery Ninja</p>
<div class="avatar"><img src="about/img/team/3.jpg" alt="" class="img-responsive img-circle" /></div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
<div class="wow bounceInUp" data-wow-delay="1s">
<div class="team boxed-grey">
<div class="inner">
<h5>Tom Petterson</h5>
<p class="subtitle">Typographer</p>
<div class="avatar"><img src="about/img/team/4.jpg" alt="" class="img-responsive img-circle" /></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>-->
<!-- /Section: about -->
<?php include 'footer.php' ?>
</body>
</html>