-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
53 lines (52 loc) · 2.32 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="shortcut icon" type="image/png" href="/favicon.ico"/>
<meta charset="UTF-8">
<title>Fraud Blocker add-on</title>
</head>
<body>
<div id="navigation">
<ul>
<li id="activelink"><a href="index.php">Home</a></li>
<li><a href="https://github.com/freetom/Fraud-Blocker-multi-browser-extension" target="_blank">Source code</a></li>
<li><a href=<? include './include/getExtensionLink.php' ?> target="_blank">Install</a></li>
<li><a href="quickstart.php">Quickstart</a></li>
<li><a href="volunteer.php">Volunteer</a></li>
<li><a href="contact.php">Contact</a></li>
</ul>
</div>
<div class="main">
<div style="height:25px; width=100%;"></div>
<img class="logo" src="images/fraud-200.png" width="100px" height="100px"></img>
<? include './include/header.php' ?>
<br/>
<hr class="horizontal_line"/>
<br/>
<center>Main Features:</center>
<ul class="features">
<li class="feature">
It <b>Blocks requests</b> to sites reputed Fraudlent
</li>
<li class="feature">
It <b>Warns</b> you when accessing a site reported as Fraudlent by other users (but still not confirmed to be a Fraud). It will give the number of users that reported the site on toolbar (example :<img src="images/fraud-1.png" class="small_icon_fraud" />)
</li>
<li class="feature">
It allows you to give <b>Fraud-Feedback</b> using the button on toolbar (<img src="images/fraud-200.png" class="icon_fraud" />)
</li>
</ul>
<hr class="horizontal_line"/>
<div class="gist">
Basically is a real-time system that allows people to report or contro-report fraudulent/dishonest/scam/fake/dangerous sites that will be then verified by us and eventually blocked.
<br/><br/>
Is there a better way to fight scam than a community based system?
</div>
<hr class="horizontal_line"/>
<? include './include/counter.php' ?>
</div>
<div class="footer">
Fraud Blocker is free software, it respects your freedom! (<a href="https://www.gnu.org/licenses/quick-guide-gplv3.html" target="blank_">GPLv3</a>)
</div>
</body>
</html>