| <!DOCTYPE html> |
| <html lang="th"> |
| <head> |
| <meta charset="UTF-8"> |
| <title>สำเร็จ</title> |
|
|
| <style> |
| body { |
| font-family: sans-serif; |
| text-align: center; |
| background: #0f2027; |
| color: white; |
| padding-top: 100px; |
| } |
| |
| .box { |
| background: #1e293b; |
| padding: 30px; |
| border-radius: 12px; |
| display: inline-block; |
| } |
| |
| .success { |
| font-size: 50px; |
| color: #22c55e; |
| } |
| </style> |
| </head> |
|
|
| <body> |
|
|
| <div class="box"> |
| <div class="success">✔</div> |
| <h2>ทำรายการสำเร็จ</h2> |
| <p id="order"></p> |
| <p id="amount"></p> |
| </div> |
|
|
| <script> |
| const urlParams = new URLSearchParams(window.location.search); |
| |
| document.getElementById("order").innerText = |
| "เลขรายการ: " + urlParams.get("order"); |
| |
| document.getElementById("amount").innerText = |
| "จำนวนเงิน: " + urlParams.get("amount") + " บาท"; |
| </script> |
|
|
| </body> |
| </html> |