-
Notifications
You must be signed in to change notification settings - Fork 3
/
thanks.html
143 lines (129 loc) · 3.57 KB
/
thanks.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thanks - BestuurPro saas landing page</title>
<!-- External CSS file link -->
<link rel="stylesheet" href="thanks.css">
<!-- Ionicons icon CDN -->
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
</head>
<body>
<div class="thanks">
<div class="container">
<h2 class="heading white">
Thank you
</h2>
<p class="para-line white">
Congratulations, you have joined 1M+ awesome teams using ManagePro!
</p>
<div class="video-container">
<iframe width="560" height="315" src="https://www.youtube.com/embed/1Jc4ywxopmY" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<span>
<button class="btn btn-filled">
<a href="https://atulcodex.com" target="_blank">Login to Dashboard</a>
</button>
</span>
</div>
</div>
<div class="order-details">
<div class="first-detail">
<h2 class="small-heading">Your order detail</h2>
<div class="row short-detail">
<div class="col">
<p class="para-line">Order number:</p>
<b><p class="para-line">53512</p></b>
</div>
<div class="col">
<p class="para-line">Date:</p>
<b><p class="para-line">March 22, 2022</p></b>
</div>
<div class="col">
<p class="para-line">Total:</p>
<b><p class="para-line">$8.80</p></b>
</div>
<div class="col">
<p class="para-line">Payment method:</p>
<b><p class="para-line">Cash on delivery</p></b>
</div>
</div>
<p class="para-line">
Pay with cash upon delivery.
</p>
</div>
<div class="second-detail">
<h2 class="small-heading">Order details</h2>
<table>
<tr>
<th>Product</th>
<th>Total</th>
</tr>
<tr>
<td>Saas Software - Basic × 1</td>
<td>$8.80</td>
</tr>
<tr>
<td>Subtotal:</td>
<td>$8.80</td>
</tr>
<tr>
<td>Payment method:</td>
<td>Cash on delivery</td>
</tr>
<tr>
<td>Total:</td>
<td>$8.80</td>
</tr>
</table>
</div>
</div>
<div class="community">
<div class="container">
<h2 class="small-heading">
Join our active community
</h2>
<div class="row communities">
<div class="col">
<ion-icon name="logo-facebook"></ion-icon>
<h2 class="small-heading">Facebook page</h2>
<p class="para-line">
Egestas hendrerit tincidunt massa
</p>
<button class="btn btn-filled-white">
<a href="#">
Join Now <ion-icon name="arrow-redo-circle-outline"></ion-icon>
</a>
</button>
</div>
<div class="col">
<ion-icon name="logo-slack"></ion-icon>
<h2 class="small-heading">Facebook page</h2>
<p class="para-line">
Egestas hendrerit tincidunt massa
</p>
<button class="btn btn-filled-white">
<a href="#">
Join Now <ion-icon name="arrow-redo-circle-outline"></ion-icon>
</a>
</button>
</div>
<div class="col">
<ion-icon name="logo-twitter"></ion-icon>
<h2 class="small-heading">Facebook page</h2>
<p class="para-line">
Egestas hendrerit tincidunt massa
</p>
<button class="btn btn-filled-white">
<a href="#">
Join Now <ion-icon name="arrow-redo-circle-outline"></ion-icon>
</a>
</button>
</div>
</div>
</div>
</div>
</body>
</html>