45 lines
1.9 KiB
PHP
45 lines
1.9 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Assessment Access Expired | SingleLogin</title>
|
|
@vite(['resources/css/app.css', 'resources/js/app.js'])
|
|
<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=Instrument+Sans:wght@400;500;600;700&family=Outfit:wght@500;600;700&display=swap" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
font-family: 'Instrument Sans', sans-serif;
|
|
background-color: #0b0f19;
|
|
color: white;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.card {
|
|
background: rgba(15, 23, 42, 0.7);
|
|
border: 1px solid rgba(239, 68, 68, 0.3);
|
|
border-radius: 20px;
|
|
padding: 36px;
|
|
text-align: center;
|
|
max-width: 450px;
|
|
backdrop-filter: blur(20px);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<div style="font-size: 3rem; margin-bottom: 16px;">⌛</div>
|
|
<h2 style="font-family: 'Outfit', sans-serif; font-size: 1.4rem; color: #ef4444; margin-bottom: 8px;">Assessment Access Expired</h2>
|
|
<p style="font-size: 0.85rem; color: #94a3b8; margin-bottom: 20px;">
|
|
The temporary access window for <strong>{{ $interview->candidate_name }}</strong> expired on {{ $interview->expires_at->format('Y-m-d H:i T') }}.
|
|
</p>
|
|
<div style="font-size: 0.8rem; color: #cbd5e1; background: rgba(255,255,255,0.05); padding: 10px; border-radius: 8px;">
|
|
Unique Submission ID: <code style="color: #38bdf8;">{{ $interview->submission_unique_id }}</code>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|