21 lines
643 B
Plaintext
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> |