forked from rizkidarmawan21/web-streaming-php-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccess_page.php
More file actions
55 lines (45 loc) · 1.98 KB
/
success_page.php
File metadata and controls
55 lines (45 loc) · 1.98 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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stream</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
</style>
<script src="assets/script/tailwind-config.js"></script>
</head>
<body class="bg-stream-dark">
<div class="font-poppins flex relative pt-20 px-3 h-screen">
<!-- Ornament -->
<span class="fixed -z-10 top-0 left-0">
<img src="assets/images/success_ellipse_green.svg" alt="stream" />
</span>
<span class="fixed -z-10 bottom-0 right-0">
<img src="assets/images/success_ellipse_red.svg" alt="stream" />
</span>
<!-- ./ -->
<div class="flex flex-col items-center m-auto pb-20">
<img src="assets/images/success_page_illustration.png" class="w-[610px] max-w-full" alt="stream" />
<div class="text-white text-2xl font-semibold text-center mt-[70px]">
Payment Finish
</div>
<p class="text-stream-gray text-base text-center leading-[30px] mb-10 mt-3">
Time to enjoy yourself to watch great <br class="hidden md:block"> movies from around the world
</p>
<div>
<a href="dashboard.php" class="py-3 px-[54px] text-center rounded-full bg-indigo-600">
<span class="text-white font-semibold text-base">
Watch Now
</span>
</a>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="assets/script/script.js"></script>
</body>
</html>