-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpaymentdone.html
112 lines (93 loc) · 2.08 KB
/
paymentdone.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Bootstrap Payment Success Page Templates Free Download | Bootstrap Payment Success </title>
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<style type="text/css">
body
{
background:#f2f2f2;
}
.payment
{
margin:auto;
border:1px solid #f2f2f2;
height:280px;
border-radius:20px;
background:#fff;
}
.payment_header
{
background:rgba(255,102,0,1);
padding:20px;
border-radius:20px 20px 0px 0px;
}
.check
{
margin:0px auto;
width:50px;
height:50px;
border-radius:100%;
background:#fff;
text-align:center;
}
.check i
{
vertical-align:middle;
line-height:50px;
font-size:30px;
}
.content
{
text-align:center;
}
.content h1
{
font-size:25px;
padding-top:35px;
}
.content a
{
width:200px;
height:35px;
color:#fff;
border-radius:30px;
padding:5px 10px;
background:rgba(255,102,0,1);
transition:all ease-in-out 0.3s;
}
.content a:hover
{
text-decoration:none;
background:#000;
}
.video_ad
{
display: inline-block;
width: 48%;
margin-top: 20px;
margin-left: 1%;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-6 mx-auto mt-5">
<div class="payment">
<div class="payment_header">
<div class="check"><i class="fa fa-check" aria-hidden="true"></i></div>
</div>
<div class="content">
<h1>Payment Success !</h1>
<p>Your Order Has Been Placed... </p>
<a href="index.html">Continue Shopping</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>