71 lines
No EOL
2.2 KiB
HTML
71 lines
No EOL
2.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>No Down Payment Required</title>
|
|
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
|
|
color: #333;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
}
|
|
.message-container {
|
|
text-align: center;
|
|
background-color: #fff;
|
|
padding: 50px;
|
|
border-radius: 20px;
|
|
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
|
|
max-width: 500px;
|
|
width: 90%;
|
|
position: relative;
|
|
}
|
|
.message-icon {
|
|
font-size: 5rem;
|
|
color: #4ecdc4;
|
|
margin-bottom: 30px;
|
|
}
|
|
.message-title {
|
|
font-size: 2.5rem;
|
|
margin-bottom: 20px;
|
|
color: #333;
|
|
font-weight: 700;
|
|
}
|
|
.message-text {
|
|
font-size: 1.2rem;
|
|
line-height: 1.6;
|
|
margin-bottom: 30px;
|
|
color: #666;
|
|
font-weight: 400;
|
|
}
|
|
.contact-info {
|
|
background-color: #f8f9fa;
|
|
padding: 20px;
|
|
border-radius: 10px;
|
|
border-left: 5px solid #4ecdc4;
|
|
text-align: left;
|
|
font-size: 1rem;
|
|
color: #333;
|
|
margin-top: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="message-container">
|
|
<div class="message-icon">✅</div>
|
|
<h1 class="message-title">No Down Payment Required</h1>
|
|
<p class="message-text">This sales order does not require any down payment.</p>
|
|
<div class="contact-info">
|
|
<strong>If you have any questions:</strong><br>
|
|
Please contact our sales team for assistance or clarification regarding your order.
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |