mirror of
https://github.com/ditkrg/AuthorizationServerDemos.git
synced 2026-01-23 14:16:40 +00:00
18 lines
473 B
Plaintext
18 lines
473 B
Plaintext
@page
|
|
@model IndexModel
|
|
@{
|
|
ViewData["Title"] = "Home page";
|
|
}
|
|
|
|
<h2>General Directorate of Region Taxes and Real Estate</h2>
|
|
<p class="lead">Welcome @Model.FirstName @Model.LastName! Your total tax is:</p>
|
|
<p class="font-weight-bold" style="font-size: 64px">@Model.TotalTax.ToString("N0") IQD</p>
|
|
|
|
<h3>Taxable Properties</h3>
|
|
<h4>Vehicles</h4>
|
|
<ul>
|
|
@foreach (var vehicle in Model.Vehicles)
|
|
{
|
|
<li>@vehicle.Model (@vehicle.LicensePlate)</li>
|
|
}
|
|
</ul> |