CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptClientApp/Views/Home/Enter.cshtml
2023-05-19 18:56:47 +04:00

24 lines
519 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

@using BankYouBankruptСlientApp
@{
ViewData["Title"] = "Страница пользователя";
}
<div class="text-center">
<h1 class="display-4">Страница пользователя</h1>
</div>
<div class="text-center">
@{
<img src="~/lib/logo.png" style="width: 50%"/>
if (APIClient.Client == null)
{
<h3 class="display-4">Сначала авторизируйтесь</h3>
return;
}
<p>Здравствуйтe, @APIClient.Client.Name @APIClient.Client.Patronymic</p>
}
</div>