-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathabout.php
More file actions
81 lines (76 loc) · 2.46 KB
/
about.php
File metadata and controls
81 lines (76 loc) · 2.46 KB
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
<?php
//============================================================+
// File name : about.php
//
// Description : About me file
//
// Author: Aditya Mathur
//
// (c) Copyright:
// Aditya Mathur
// eztasker.com
//
// License:
// Copyright (C) 2014 Aditya Mathur - eztasker.com
//============================================================+
session_start();
if(isset($_SESSION['li_uname111'])){
$e=$_SESSION['li_uname111'];
$type=1;
$title="Admin";
}
elseif(isset($_SESSION['li_uname222'])){
$e=$_SESSION['li_uname222'];
$type=2;
$title="Task Poster";
}
elseif(isset($_SESSION['li_uname333'])){
$e=$_SESSION['li_uname333'];
$type=3;
$title="Task Seeker";
}
else{
$e='';
$type=0;
//header('location:login.php');die; //kill script
}
?>
<?php include ('./includes/header.php');?>
<div class="">
<!-- Menus -->
<?php include './includes/menu.php';?>
</div>
<div class="spacer"></div>
</div>
<!--Include Tooltips script-->
<?php require_once './includes/tooltip.php';?>
<br/><br/>
<div id="container" class="ltr">
<header id="header" class="info">
<h2>About EasyTask</h2>
<p> </p>
<div>What is EasyTask?</div>
<div><br clear="none" />
</div>
<div>EasyTask connects neighbours to get things done. Since the start of this century, the lives of people have become quite hectic and they rarely get enough time to do their daily chores.But again there are few who feel that they do not have enough work, and they look for possibilities to end their boredom or earn their living by doing some easy-to-do jobs. Taskmaster aims to connect these two sets of people. It eases the burden of those who are under work-pressure and at the same time it provides a channel to earn money.</div>
<div><br />
</div>
<div>
<p> </p>
<p> </p>
</div>
<div><br />
</div>
<div></div>
<div><br />
</div>
<div>How it works?</div>
<div>You'll have to first create an account on our website by providing your andrew e-mail id. Once registered, you will have access to a wide database of small jobs that is available in your area and elsewhere. You could also post jobs that you would like to get done within a certain time frame. If someone shows interest on your posted job, you'll receive a notification on your registered mail. </div>
<p> </p>
</header>
<div class="main-content"></div>
<div class="sidebar"></div>
<div class="clear"></div>
</div>
<!-- login form ends -->
<?php include('./includes/footer.php');?>