AuthorizationServerDemos/CSharp/OidcSamples/OidcSamples.TaxApp/Pages/Index.cshtml
2021-01-18 15:41:28 +03:00

24 lines
693 B
Plaintext

@page
@model IndexModel
@{
ViewData["Title"] = "Home page";
}
<h1 class="col-lg-7 mt-5">General Directorate of Region Taxes and Real Estate</h1>
<div class="col-lg-7 d-flex flex-column">
<p class="lead mt-2">Welcome @Model.FirstName @Model.LastName!</p>
<div class="bg-dark rounded py-3 px-4 mt-4">
<h2 class="font-weight-bold mt-3 text-warning">Your total tax is:</h2>
<p class="font-weight-bold text-light" style="font-size: 64px">@Model.TotalTax.ToString("N0") IQD</p>
</div>
</div>
<h3>Taxable Properties</h3>
<h4>Vehicles</h4>
<ul>
@foreach (var vehicle in Model.Vehicles)
{
<li>@vehicle.Model (@vehicle.LicensePlate)</li>
}
</ul>