nikbel2004@outlook.com 391de9d2ea ClientApp (Cards, Login, Register, Privacy и View-ы связанные с операциями, Layout и HomeController)
P.S. надизайнились, потом возможно что-то допридумаем
2024-05-01 22:14:13 +04:00

44 lines
767 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 BankContracts.ViewModels.Client.ViewModels
@model List<CardViewModel>
@{
ViewData["Title"] = "Cписок банковских карт";
}
<div class="text-center">
<h1 class="display-4">Банковские карты</h1>
</div>
<div class="text-center">
@{
<p>
<a asp-action="CreateCard">Оформить банковскую карту</a>
</p>
<table class="table">
<thead>
<tr>
<th>
Номер карты
</th>
<th>
Фамилия владельца
</th>
<th>
Имя владельца
</th>
<th>
Отчество владельца
</th>
<th>
Баланс
</th>
<th>
Период
</th>
</tr>
</thead>
</table>
}
</div>