-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtrust.php
More file actions
68 lines (63 loc) · 1.59 KB
/
trust.php
File metadata and controls
68 lines (63 loc) · 1.59 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
<?php
//============================================================+
// File name : trust.php
//
// Description : Trust and Safety
//
// 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>
</header>
<div class="main-content">
<p> </p>
<p>Trust & Safety </p>
<p>1. We ensure trusted interactions between helpers and people in need with review and vetting of work done. </p>
<p>2. Feedback on work done with star rating for task doers. </p>
<p>3. Vetting of task post and actual work given - rating for task posters</p>
</div>
<div class="sidebar"></div>
<div class="clear"></div>
</div>
<!-- login form ends -->
<?php include('./includes/footer.php');?>