-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
1 lines (1 loc) · 2.11 KB
/
Copy pathtest.html
File metadata and controls
1 lines (1 loc) · 2.11 KB
1
<!DOCTYPE html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet"><title>Order Confirmation</title><style>body{font-family:"Poppins",sans-serif;margin:0;padding:0;background-color:#f9fafc;color:#333}.container{max-width:700px;margin:40px auto;padding:20px;background-color:#ffffff;border-radius:10px;box-shadow:0 2px 10px rgba(0,0,0,0.1)}.header{text-align:center;padding-bottom:20px;border-bottom:2px solid #f0f0f0}.header h1{font-size:24px;color:#4f5ef1;margin:0}.header p{font-size:16px;color:#666;margin:5px 0 0}.order-details{padding:20px 0;border-bottom:2px solid #f0f0f0}.order-details h2{font-size:20px;color:#333;margin-bottom:20px}.order-info,.items-table{width:100%;margin-bottom:20px}.order-info th,.order-info td,.items-table th,.items-table td{text-align:left;padding:10px;border:1px solid #e0e0e0}.items-table th{background-color:#f0f0f0}.total{text-align:right;font-size:18px;font-weight:600;margin-top:10px}.footer{text-align:center;padding-top:20px}.footer p{font-size:14px;color:#777}.footer a{color:#4f5ef1;text-decoration:none}</style></head><body><div class="container"><div class="header"><h1>Order Confirmation</h1><p>Your LMS order is confirmed! We're just as excited as you are.</p></div><div class="order-details"><h2>Order Details</h2><table class="order-info"><tr><th>Order #</th><td>${order._id}</td></tr><tr><th>Order Date</th><td>${order.date}</td></tr></table><table class="items-table"><tr><th>Item</th><th>Qty</th><th>Cost</th></tr><tr><td>${order.name}</td><td>1</td><td>${order.price}</td></tr></table><div class="total"><p>Subtotal: $${order.price}</p><p>Total: $${order.price}</p></div></div><div class="footer"><p>If you have any questions, please contact our support team at <a href="mailto:khailendraprasad@gmail.com">khailendraprasad@gmail.com</a></p><p>© 2024 Your LMS. All rights reserved.</p></div></div></body></html>