-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAbout.php
More file actions
65 lines (53 loc) · 2.26 KB
/
About.php
File metadata and controls
65 lines (53 loc) · 2.26 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
<?php
ini_set('display_errors', 'On');
error_reporting(E_ALL);
include_once 'lib/CurlHelper.php';
include_once 'lib/Interoperability.php';
include_once 'lib/UrlHelper.php';
include_once 'lib/Product.php';
session_start();
$_SESSION['ref'] = $_SERVER['SCRIPT_NAME'];
$_SESSION['IS_SHOPPING_PAGE'] = false;
session_write_close();
$userServers = TeamEndPoints::$userServers;
?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Team Alpha Market</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link href="css/AutoGrid.css" rel="stylesheet" type="text/css">
<link href="css/Header.css" rel="stylesheet" type="text/css">
<!--Template-->
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/print.css" media="print">
<script src="js/custom.js"></script>
<style>
body {font-family: Arial, Helvetica, sans-serif;}
</style>
</head>
<body>
<?php
session_start();
$_SESSION['ref'] = $_SERVER['SCRIPT_NAME'];
session_write_close();
?>
<?php include 'Header.php'; ?>
<div id="content">
<div class="wrap clearFix">
<h2>About Team Alpha</h2>
<div class="clearFix">
<div class="col floatLeft"> <img src="images/icon-stats.png" alt="" class="icon">
<h3>Worldwide Marketing</h3>
<p>Team alpha market was found in 2018 including customer all over the world. Product diversity, it includes coffe beans, flowers, spectacular voyages, cryptocoins, Chinese food.</p>
<p>Team Alpha Market guarantees customer satisfaction with every purchase. Customers who are not fully satisfied may return their product or service for a full refund subject to the terms and conditions of the Team Alpha Marketplace, and the Team Alpha Market Affiliates. These terms and conditions will be presented using impossibly complex legal terms full of conditions and exclusions, all in a document with a font size so small that you will need an electron microscope to read them.</p>
</div>
</div>
</div>
</div>
<?php include 'Footer.php'; ?>
</body>
</html>