2023-04-02 01:17:44 +04:00
|
|
|
|
@{
|
2023-05-19 22:23:50 +04:00
|
|
|
|
ViewData["Title"] = "Страница кассира";
|
2023-04-02 01:17:44 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
<div class="text-center">
|
2023-05-19 21:04:31 +04:00
|
|
|
|
<h1 class="display-4">Страница кассира</h1>
|
2023-04-02 01:17:44 +04:00
|
|
|
|
</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>
|