-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathorder_success.php
More file actions
49 lines (49 loc) · 1.18 KB
/
order_success.php
File metadata and controls
49 lines (49 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Order Success</title>
<style>
body {
font-family: 'Nunito', sans-serif;
background-color: #f8f9fc;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background-color: #fff;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
h1 {
color: #1cc88a;
font-size: 1.75rem;
}
p {
font-size: 1.25rem;
}
a {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #4e73df;
color: white;
text-decoration: none;
border-radius: 5px;
}
a:hover {
background-color: #2e59d9;
}
</style>
</head>
<body>
<div class="container">
<h1>Pesanan Berhasil!</h1>
<p>Terima kasih atas pesanan Anda</p>
<a href="pengolahan-pesanan-pelayan.php">Back to Menu</a>
</div>
</body>
</html>