CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptCashierApp/Views/Home/Enter.cshtml

21 lines
470 B
Plaintext
Raw Normal View History

@{
2023-05-19 22:23:50 +04:00
ViewData["Title"] = "Страница кассира";
}
<div class="text-center">
2023-05-19 21:04:31 +04:00
<h1 class="display-4">Страница кассира</h1>
</div>
2023-05-19 20:37:30 +04:00
<div class="text-center">
@{
<img src="~/lib/logo.png" style="width: 50%"/>
if (APICashier.Cashier == null)
{
<h3 class="display-4">Сначала авторизируйтесь</h3>
return;
}
<p>Здравствуйтe, @APICashier.Cashier.Name @APICashier.Cashier.Patronymic</p>
}
</div>