-
Notifications
You must be signed in to change notification settings - Fork 0
/
thankYouPage.php
54 lines (47 loc) · 1.62 KB
/
thankYouPage.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
<?php
$currentPage = 'NULL';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="./IMAGES/logo/Copy of Black White Minimalist Aesthetic Letter Initial Name Monogram Logo (3).png" type="image/x-icon">
<title>SK Fashion Hub</title>
<link rel="stylesheet" href="./Styles/thank.css">
</head>
<body>
<div id="navBarHome">
<?php include './header_HOME.php'; ?>
</div>
<div id="mobileNav">
<?php include './header_HOME_M.php'; ?>
</div>
<div class="popup" id="popup">
<h2>Ordered Successfully!</h2>
<p>Thank You Yor Shopping.</p>
<video id="myVideo" width="150px" height="150px" autoplay muted>
<source src="./VIDEO/Animation - 1710832115995.webm" type="video/webm">
Your browser does not support the video tag.
</video>
<div class="button-container">
<button class="button1" onclick="redirectToHome()">View Oders</button>
<a href="./Includes/downloadPDF.php"><button class="button2"><i class="fa-solid fa-download"></i> Download</button></a>
</div>
</div>
<script>
function redirectToHome() {
window.location.href = "./index.php";
}
</script>
<script>
function displayPopup() {
var popup = document.getElementById("popup");
popup.style.display = "block";
}
document.getElementById("continueCheckout").onclick = function() {
displayPopup();
};
</script>
</body>
</html>