Files

22 lines
776 B
Plaintext
Raw Permalink Normal View History

2019-03-04 16:58:35 -06:00
@page
@model IndexModel
@{
ViewData["Title"] = "Home page";
}
@inject SignInManager<AppUser> SignInManager
<div class="text-center">
2019-06-25 17:39:36 -05:00
<h1 class="display-4">Welcome to Razor Pages sample for Raven.Identity</h1>
2019-03-04 16:58:35 -06:00
@if (SignInManager.IsSignedIn(User))
{
<p>Hi, @User.Identity.Name. You're currently signed in. 😎</p>
<p>
2019-06-25 17:39:36 -05:00
Your user is saved in Raven. <a href="http://live-test.ravendb.net/studio/index.html#databases/documents?collection=AppUsers&database=Raven.Identity.Sample.RazorPages">View it</a>.
2019-03-04 16:58:35 -06:00
</p>
}
else
{
2019-03-04 17:17:22 -06:00
<p>You're not signed in. Click <a target="_blank" href="/identity/account/register">register</a> or <a href="/identity/account/login">login</a> to try out Raven.Identity.</p>
2019-03-04 16:58:35 -06:00
}
</div>