23 lines
436 B
Plaintext
23 lines
436 B
Plaintext
|
@using BankYouBankruptContracts.ViewModels
|
|||
|
|
|||
|
@model ClientViewModel
|
|||
|
|
|||
|
@{
|
|||
|
ViewData["Title"] = "Home Page";
|
|||
|
}
|
|||
|
|
|||
|
<div class="text-center">
|
|||
|
<h1 class="display-4">Страница пользователя</h1>
|
|||
|
</div>
|
|||
|
|
|||
|
<div class="text-center">
|
|||
|
@{
|
|||
|
if (Model == null)
|
|||
|
{
|
|||
|
<h3 class="display-4">Сначала авторизируйтесь</h3>
|
|||
|
return;
|
|||
|
}
|
|||
|
|
|||
|
<p>Здравствуйтe, @Model.Name @Model.Patronymic</p>
|
|||
|
}
|
|||
|
</div>
|