Files
2026-02-23 14:02:44 +01:00

27 lines
644 B
Plaintext

@{
ViewData["Title"] = "Enroll";
}
<div class="card">
<h1>🎉 Enrollment</h1>
<p>@ViewBag.Message</p>
@if (ViewBag.HasDeltaLink == true)
{
<p>
<span class="status-dot status-synced"></span>
Your calendar has been synced at least once. Incremental updates will continue
every 60 minutes.
</p>
}
else
{
<p>
<span class="status-dot status-pending"></span>
Your initial 30-day calendar sync will begin within the next sync cycle.
</p>
}
<a asp-action="Status" class="btn btn-primary">View Sync Status</a>
</div>