Files
rent-a-car/RentACar/WebApp/Views/Home/Index.cshtml
2022-04-08 19:22:12 +03:00

14 lines
437 B
Plaintext

@{
ViewData["Title"] = "LuminousCars";
}
<div class="text-center">
<h1 class="display-4">Welcome, @User.Identity.Name</h1>
<br />
<a type="button" class="btn btn-primary" asp-area="" asp-controller="Cars" asp-action="Index">Manage cars</a>
@if (this.User.IsInRole("Admin"))
{
<a type="button" class="btn btn-primary" asp-area="" asp-controller="Rents" asp-action="Index">Manage rents</a>
}
</div>