-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpay_success.php
127 lines (117 loc) · 2.98 KB
/
pay_success.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
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?php include_once 'helpers/helper.php'; ?>
<?php subview('header.php'); ?>
<style>
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body {
background: #bdc3c7; /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #2c3e50, #bdc3c7); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #2c3e50, #bdc3c7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
html {
font-family: "Poppins", sans-serif;
font-weight: 300;
font-size: 10px;
}
h3{
font-size : 4rem;
font-weight: 600;
text-align: center;
}
.container{
width : 800px;
height: 70vh;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: white;
padding: 5rem 7rem;
border-radius: 1.25rem;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.25);
@media screen and (max-width:769px) {
width: 650px;
padding: 3rem 7rem;
}
@media screen and (max-width:480px) {
width: 350px;
padding: 2rem 2rem;
}
}
.container-heading{
margin-bottom: 20px;
@media screen and (max-width:769px) {
font-size: 3rem;
}
@media screen and (max-width:480px) {
font-size: 2.3rem;
margin-bottom: 10px;
}
}
.container-image{
width:100px;
margin-bottom: 20px;
@media screen and (max-width:480px){
width : 70px;
margin-bottom: 20px;
}
}
.container-welcome{
font-size: 3rem;
margin-bottom: 10px;
@media screen and (max-width:769px) {
font-size: 2.5rem;
}
@media screen and (max-width:480px) {
font-size: 1.6rem;
margin-bottom: 5px;
}
}
.container-cube{
font-size: 3rem;
margin-bottom: 20px;
@media screen and (max-width:769px) {
font-size: 2.5rem;
}
@media screen and (max-width:480px) {
font-size: 1.6rem;
margin-bottom: 20px;
}
}
.container-text{
text-align: center;
font-size: 1.6rem;
font-weight:400;
margin-bottom: 20px;
@media screen and (max-width:769px) {
font-size: 1.5rem;
}
@media screen and (max-width:480px) {
font-size: 1.2rem;
margin-bottom: 10px;
}
}
</style>
<main>
<div class="container">
<h3 class="container-heading">Thanh toán thành công!</h3>
<img
class="container-image"
src="https://res.cloudinary.com/dmnazxdav/image/upload/v1599736321/tick_hhudfj.svg"
alt="Thanh toán thành công"
/>
<h3 class="container-welcome">Cảm ơn bạn đã chọn chúng tôi</h3>
<p class="container-text">
Biên nhận thanh toán tự động sẽ được gửi đến email đã đăng ký của bạn.
</p>
</div>
</main>
<?php subview('footer.php'); ?>