Font-Awesome und Startseite;

This commit is contained in:
2020-06-04 22:45:42 +02:00
parent 30d2822891
commit cb5acd12eb
7925 changed files with 111573 additions and 37 deletions

View File

@@ -1,8 +1,14 @@
@{
@using Microsoft.AspNetCore.Identity
@inject SignInManager<IdentityUser> SignInManager
@{
ViewData["Title"] = "Home Page";
}
<div class="text-center">
<h1 class="display-4">Welcome</h1>
<p>Learn about <a href="https://docs.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
</div>
@if (SignInManager.IsSignedIn(User))
{
<partial name="_homeLogInPartial" model="@Model" />
}
else
{
<partial name="_homeNoLogInPartial" />
}