Files
hotline-planner/dev/backend/web app webhook/Views/Home/Index.cshtml
2026-02-23 12:27:26 +01:00

21 lines
643 B
Plaintext

@{
ViewData["Title"] = "Home Page";
}
<div class="text-center mt-5">
<h1 class="display-4">Welcome to Webhook Sync</h1>
<p>Synchronize your Microsoft 365 Calendar with ease.</p>
@if (User.Identity?.IsAuthenticated == true)
{
<a asp-controller="Sync" asp-action="Index" class="btn btn-success btn-lg mt-3">Go to Dashboard</a>
}
else
{
<form asp-controller="Home" asp-action="Onboard" method="get">
<button type="submit" class="btn btn-primary btn-lg mt-3">
<i class="bi bi-microsoft"></i> Connect Microsoft Calendar
</button>
</form>
}
</div>