forked from galens/myCoinWallet
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcontact.php
58 lines (53 loc) · 2 KB
/
contact.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
54
55
56
57
58
<?php
session_start();
if (!isset($_SESSION['username']))
{
header('location:index.php');
}
require_once('includes/config.php');
require_once('includes/jsonRPCClient.php');
require_once('includes/bcfunctions.php');
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title><?php printf(SITENAME);?> - Deposit</title>
<link rel="stylesheet" href="css/styles.css" type="text/css" />
</head>
<body>
<div id="main">
<div id="top"><div style='float:left;position:relative;top:25px;'><h2><?php printf(SITENAME);?></h2></div></div>
<div id="wrapper">
<div id="content">
<div class="innermargin">
<h1><?php printf(SITENAME);?> Contact</h1>
<br />
Pour contacter nos équipes, voici les différents moyen :<br />
<ul>
<li>Pour un bug sur le site : <a href=https://github.com/LaFouine25/myCoinWallet target=_blank>GitHub</a></li>
<li>Par mail : <?php echo MAILSITE;?></li>
</ul>
<?php
$bitcoin = new jsonRPCClient('http://' . USER . ':' . PASS . '@' . SERVER . ':' . PORT .'/',false);
// save current balance
saveCurrentBalance($bitcoin, $_SESSION['sendaddress']);
echo "<b>" . $_SESSION['sendaddress'] . "</b>";
?>
</div>
</div>
</div>
<div id="menu">
<div class="menumargin">
<a href='index.php'>Acceuil</a>
<a href='account.php'>Compte</a>
<a href='deposit.php'>Dépôt</a>
<a href='withdraw.php'>Transfert</a>
<a href='contact.php'>Contact</a>
<a href='logout.php'>Logout</a>
</div>
</div>
<div id="footer"><a href="index.php">Acceuil</a> | <a href="account.php">Compte</a> | <a href="deposit.php">Dépôt</a> | <a href="withdraw.php">Transfert</a> | <a href="contact.php">Contact</a> | <a href="#">Logout</a> | </div>
</div>
</body>
</html>