29 lines
742 B
Plaintext
29 lines
742 B
Plaintext
@{
|
|
ViewData["Title"] = "Home Page";
|
|
}
|
|
|
|
<div class="text-center">
|
|
<h1 class="display-4">Sync Dashboard</h1>
|
|
|
|
@if (User.Identity.IsAuthenticated)
|
|
{
|
|
<p class="text-success">You are signed in as: <strong>@User.Identity.Name</strong></p>
|
|
|
|
<a href="@Url.Action("CreateSyncEvent", "Home")" class="btn btn-primary btn-lg">
|
|
Create Dummy Event in Outlook
|
|
</a>
|
|
}
|
|
else
|
|
{
|
|
<p>Please sign in to sync your calendar.</p>
|
|
<a href="/MicrosoftIdentity/Account/SignIn" class="btn btn-dark">Sign In with Microsoft</a>
|
|
}
|
|
|
|
@if (ViewBag.Message != null)
|
|
{
|
|
<div class="alert alert-success mt-4">
|
|
@ViewBag.Message
|
|
</div>
|
|
}
|
|
</div>
|