-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathheader.php
More file actions
67 lines (61 loc) · 2.62 KB
/
header.php
File metadata and controls
67 lines (61 loc) · 2.62 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
<?php
$session = session_id();
if (!$session) {
session_start();
$session = session_id();
}
?>
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Checkout with Kount Demo</title>
<!--Including Bootstrap style files-->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/header_footer.css">
<link rel="shortcut icon" type="image/x-icon" href="./img/faviconKount.ico">
</head>
<body>
<div class="header">
<div class="headerImage">
<img class="headerImg" src="img/kount-central-logo.jpg" width="177px" height="50px">
</div>
<div class="account">
<form action="logout.php" method="POST">
<button class="logBtn" id="logBtn"><?=isset($_SESSION['username']) ? $_SESSION['username'] . " (Logout)" : "Log In" ?> </button>
</form>
</div>
</div>
<div class="links">
<div class="innerLinks">
<span class="github">
<a href="http://kount.github.io/" target="_blank">Github portal</a>
</span>
<span class="java">
<a href="https://github.com/Kount/kount-ris-java-sdk/wiki" target="_blank">Java SDK</a>
</span>
<span class="php">
<a href="https://github.com/Kount/kount-ris-php-sdk/wiki" target="_blank">PHP SDK</a>
</span>
<span class="net">
<a href="https://github.com/Kount/kount-ris-dotnet-sdk" target="_blank">.NET SDK</a>
</span>
<span class="python">
<a href="https://github.com/Kount/kount-ris-python-sdk" target="_blank">Python SDK</a>
</span>
<span class="awc">
<a href="https://awc.test.kount.net/login.html" target="_blank">AWC</a>
</span>
</div>
</div>
<div class="well">
<img class="hImage" src="img/kount-demo.png" width="343" height="80"/>
<div>
<p style="text-align:center"><span class="title">Beat Fraud and Boost Sales with Kount</span></p>
<p style="text-align:center"><span class="subTitle">This quick demo will show how seamless it is to add Kount to your eCommerce experience: reduce fraud while ensuring </span></p>
<p style="text-align: center"><span class="subTitle"> your customers have a great online shopping experience</span></p>
</div>
</div>
</body>
</html>