agdar/appointments/templates/appointments/confirmation_already_processed.html
2025-11-02 14:35:35 +03:00

61 lines
2.2 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Already Processed - Tenhal Healthcare</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.container {
background: white;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
max-width: 600px;
width: 100%;
padding: 50px 40px;
text-align: center;
}
.icon { font-size: 80px; margin-bottom: 20px; }
h1 { color: #212529; font-size: 32px; margin-bottom: 15px; }
p { color: #6c757d; font-size: 18px; line-height: 1.6; margin-bottom: 30px; }
.status-badge {
display: inline-block;
padding: 10px 20px;
border-radius: 20px;
font-weight: 600;
margin: 20px 0;
}
.status-confirmed { background: #d4edda; color: #155724; }
.status-declined { background: #f8d7da; color: #721c24; }
</style>
</head>
<body>
<div class="container">
<div class="icon"></div>
<h1>Already Processed</h1>
<p>This appointment confirmation has already been processed.</p>
{% if status == 'CONFIRMED' %}
<div class="status-badge status-confirmed">✓ Confirmed</div>
<p>Your appointment was confirmed on {{ confirmation.confirmed_at|date:"F j, Y" }}.</p>
{% elif status == 'DECLINED' %}
<div class="status-badge status-declined">✗ Declined</div>
<p>This appointment was declined.</p>
{% endif %}
<p style="font-size: 14px; color: #6c757d; margin-top: 30px;">
If you need to make changes, please contact the clinic directly.
</p>
</div>
</body>
</html>