codebook / potato /templates /logged_out.html
davidjurgens's picture
Deploy: Potato — Codebook Annotation
aceb1b2 verified
Raw
History Blame Contribute Delete
1.51 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }} - Logged Out</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body class="potato-page-center">
<div class="potato-page-card potato-page-card-wide" style="text-align: center;">
<div class="potato-page-icon potato-page-icon-success">
<i class="fas fa-sign-out-alt"></i>
</div>
<h1 class="potato-page-title">Logged Out</h1>
<p class="potato-page-subtitle">
You have been successfully logged out.
Your responses have been saved.
</p>
<div class="potato-alert potato-alert-info" style="text-align: left;">
<i class="fas fa-info-circle me-2"></i>
You may close this window. If you need to return to the task, please use the original link provided by your platform.
</div>
<div style="margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border); font-size: 0.75rem; color: var(--muted-foreground);">
<i class="fas fa-shield-alt me-1"></i> Your responses have been securely recorded.
</div>
</div>
</body>
</html>