You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
709 B
33 lines
709 B
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>支付成功</title>
|
|
<style>
|
|
body {
|
|
text-align: center;
|
|
padding-top: 100px;
|
|
font-size: 24px;
|
|
}
|
|
|
|
.buttons {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.buttons a {
|
|
display: inline-block;
|
|
margin-right: 10px;
|
|
padding: 10px 20px;
|
|
background-color: #ccc;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>支付成功</div>
|
|
<div class="buttons">
|
|
<a href="view_order.php">查看订单</a>
|
|
<a href="shopping_cart.php">返回购物车</a>
|
|
</div>
|
|
</body>
|
|
</html>
|