38 lines
1.5 KiB
HTML
38 lines
1.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Workspace ready — JQC</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
|
<style>body { background: #f6f7f9; }</style>
|
|
</head>
|
|
<body>
|
|
<div class="container" style="max-width:500px; margin-top:4rem;">
|
|
<div class="card border-0 shadow-sm text-center p-5">
|
|
<div class="mb-3">
|
|
<i class="bi bi-check-circle-fill text-success" style="font-size:3rem;"></i>
|
|
</div>
|
|
<h2 class="h4 mb-2">Your workspace is ready!</h2>
|
|
<p class="text-muted mb-1" style="font-size:.9rem;">
|
|
<strong>{{ slug }}.{{ base_domain }}</strong> has been provisioned.
|
|
</p>
|
|
{% if trial_ends_at %}
|
|
<p class="text-muted mb-4" style="font-size:.85rem;">
|
|
Your 14-day free trial runs until
|
|
<strong>{{ trial_ends_at.strftime('%B %d, %Y') }}</strong>.
|
|
</p>
|
|
{% endif %}
|
|
<a href="{{ login_url }}" class="btn btn-primary btn-lg">
|
|
<i class="bi bi-box-arrow-in-right me-1"></i> Go to your workspace
|
|
</a>
|
|
<p class="text-muted mt-3 mb-0" style="font-size:.8rem;">
|
|
<i class="bi bi-info-circle me-1"></i>
|
|
Bookmark <code>{{ slug }}.{{ base_domain }}</code> — that's your permanent workspace URL.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|