61 lines
2.2 KiB
HTML
61 lines
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>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>
|