-
Notifications
You must be signed in to change notification settings - Fork 1
/
confirmation.php
37 lines (35 loc) · 1.52 KB
/
confirmation.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Confirmation</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link rel="stylesheet" href="css/confirmation.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-12">
<div class="card">
<div class="card-body">
<div class="row">
<div class="col-12">
<h1 class="text-center">Thank you for your order!</h1>
<p class="text-center">Your order has been placed and will be processed shortly.</p>
<p class="text-center">You will receive an email confirmation shortly.</p>
<p class="text-center">You will be redirected to the home page in 10 seconds.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
setTimeout(function () {
window.location.href = "index.php";
}, 10000);
</script>