Advertisement
linhle

Untitled

Mar 25th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1.  
  2. <%@page contentType="text/html" pageEncoding="UTF-8"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  7. <title>Xác nhận</title>
  8. </head>
  9. <body>
  10. <h1>Xác nhận đơn hàng</h1>
  11. <table>
  12. <tr>
  13. <th>Mã</th>
  14. <th>Người đặt hàng</th>
  15. <th>Tổng tiền</th>
  16. <th>Tổng số vé</th>
  17. <th>Trạng thái</th>
  18. </tr>
  19.  
  20. <tbody>
  21. <tr>
  22. <td>${receipt.getReceiptID()}</td>
  23. <td>${user.getUserName()}</td>
  24. <td>${receipt.getTotalprice()}</td>
  25. <td>${receipt.getTotalticket()}</td>
  26. <td>Chờ thanh toán</td>
  27. </tr>
  28. </tbody>
  29. </table>
  30. <form method="post" action="checkout">
  31. <input type="hidden" name="receiptid" value="${receipt.getReceiptID()}">
  32. <input type="hidden" name="totalprice" value="${receipt.getTotalprice()}">
  33. <input type="hidden" name="username" value="${user.getUserName()}">
  34. <input type="hidden" name="matchid" value="${matchid}">
  35. <input type="submit" value="Thanh toán">
  36. </form>
  37. </body>
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement