-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeposit.php
More file actions
80 lines (63 loc) · 1.95 KB
/
Copy pathdeposit.php
File metadata and controls
80 lines (63 loc) · 1.95 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
<?php
session_start();
$connection = mysqli_connect("localhost", "root", "", "platform");
$database = mysqli_select_db($connection, "platform");
$id = $_SESSION['id'];
$sql = "SELECT * FROM platform_table WHERE id = '$id'";
$query = mysqli_query($connection, $sql);
$result = mysqli_fetch_array($query);
?>
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
*{
padding: 0px;
margin: 0px;
border: 0px;
}
body{
background: cyan;
opacity: 0.8;
}
#dep{
width: 50%;
height: auto;
color: cyan;
box-shadow: 0px 10px 10px rgba(0,0,0,0.8);
color: black;
margin: 2em auto;
line-height: 2em;
padding: 2em;
font-size: 1.4em;
border-right: 5px solid gold;
}
#cls {font-size: 1.3em;}
#bt{
padding: 1.5em;
border-radius: 10px;
background: gold;
}
#bt:hover{background: silver;}
@media screen and (max-width: 480px){
#dep{
max-width: 100%;
height: auto;
}
}
</style>
</head>
<body>
<div id="dep">
<a href="profile.php">
<button><i class="fa fa-times" id="cls"></i></button></a><br><br>
<p>Thank you <?php echo $result["username"] ?>,
With your referral code as <?php echo $result["my_code"] ?>.
Kindly note, for security reasons and convenience, we urge
you to contact customer service to help you make a deposit below. Thank you.</p><br>
<button id="bt">Customer Service</button>
</div>
</body>
</html>