-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathabout.php
More file actions
95 lines (88 loc) · 2.84 KB
/
about.php
File metadata and controls
95 lines (88 loc) · 2.84 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
include 'configuration/config.php';
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title><?php echo $config['website_name'] ?> - About Us</title>
<?php include_once 'components/header.php';?>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<a class="navbar-brand" href="#"><?php echo $config['website_name'] ?></a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarColor01"
aria-controls="navbarColor01"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarColor01">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.php"
><span class="fa fa-home"></span> Home
<span class="sr-only">(current)</span></a
>
</li>
<li class="nav-item">
<a class="nav-link" href="terms.php"
><span class="fa fa-file-text"></span> Terms of Services</a
>
</li>
<li class="nav-item active">
<a class="nav-link" href="about.php"
><span class="fa fa-user"></span> About Us</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="report.php"
><span class="fa fa-flag"></span> Report Abuse</a
>
</li>
</ul>
</div>
</nav>
<div class="container pb-5 pt-5">
<div class="card">
<div class="card-header">
About
<?php echo $config['website_name'] ?>
</div>
<div class="card-body">
<h3 class="card-title">About Us</h3>
<p>
<?php echo $config['website_name'] ?>
is a free and anonymous file-sharing platform. You can store and
share data of all types (files, images, music, videos etc...). There
is no limit, you download at the maximum speed of your connection
and everything is free.
</p>
<h3>Supported Formats</h3>
<p>
We support more then 900 format
<a href="supported.php">See Here...</a>
</p>
<h3>No registration required</h3>
<p>
Use
<?php echo $config['website_name'] ?>
immediatly, no registration required.
</p>
<h3>Privacy and Anonymity</h3>
<p>
Respecting our users is essential. We do not store any personal
data, we do not sell anything.
</p>
</div>
</div>
</div>
<?php include_once 'components/ads.php';?>
<?php include_once 'components/footer.php';?>
</body>
</html>