shop.tonybtw.com

shop.tonybtw.com

https://git.tonybtw.com/shop.tonybtw.com.git git://git.tonybtw.com/shop.tonybtw.com.git
362 bytes raw
1
package views
2
3
templ Success(cart_count int) {
4
	@Layout("Order Complete") {
5
		<div class="success-message">
6
			<h1>Thank you for your order!</h1>
7
			<p>Your order has been received and is being processed.</p>
8
			<p>You'll receive a confirmation email shortly.</p>
9
			<a href="/" class="btn-primary">Continue Shopping</a>
10
		</div>
11
		@Cart_Widget(cart_count)
12
	}
13
}