Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Order Summary</title> | |
<!-- Bootstrap CSS --> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> | |
<style> | |
body { | |
font-family: 'Arial', sans-serif; | |
background-color: #f7f9fc; /* Light blue-gray background */ | |
} | |
.order-container { | |
max-width: 768px; | |
margin: 40px auto; | |
padding: 20px; | |
background-color: #ffffff; /* White card background */ | |
border-radius: 15px; | |
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */ | |
} | |
.order-title { | |
font-size: 2rem; | |
font-weight: bold; | |
color: #007bff; /* Bright blue */ | |
text-align: center; | |
margin-bottom: 20px; | |
} | |
.section-title { | |
font-size: 1.5rem; | |
font-weight: bold; | |
color: #333333; /* Dark gray */ | |
margin-bottom: 10px; | |
} | |
.order-details { | |
background-color: #f8f9fa; /* Light gray for the order details section */ | |
border-radius: 8px; | |
padding: 15px; | |
font-size: 1rem; | |
line-height: 1.8; | |
color: #555555; /* Medium gray text */ | |
} | |
.order-item { | |
margin-bottom: 10px; | |
} | |
.highlight { | |
color: #ff5722; /* Bright orange for key details */ | |
font-weight: bold; | |
} | |
.order-summary { | |
margin-top: 20px; | |
font-size: 1.2rem; | |
font-weight: bold; | |
text-align: right; | |
color: #333333; /* Dark gray */ | |
} | |
.total-price { | |
font-size: 1.8rem; | |
color: #28a745; /* Bright green for total price */ | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="order-container"> | |
<h2 class="order-title">Your Order Summary</h2> | |
<!-- Items Section --> | |
<div> | |
<h3 class="section-title">Order Details:</h3> | |
{% if order %} | |
<div class="order-details"> | |
{% for line in order.Order_Details__c.split('\n') %} | |
<div class="order-item"> | |
{{ line | safe }} | |
</div> | |
{% endfor %} | |
</div> | |
{% else %} | |
<p>No order details available.</p> | |
{% endif %} | |
</div> | |
<!-- Total Section --> | |
{% if order %} | |
<div class="order-summary mt-4"> | |
<span>Total: </span> | |
<span class="total-price">${{ order.Total_Amount__c }}</span> | |
</div> | |
{% endif %} | |
</div> | |
</div> | |
</body> | |
</html> | |