diff --git a/Bank/BankClientApp/Views/Home/Privacy.cshtml b/Bank/BankClientApp/Views/Home/Privacy.cshtml
index 1a65a68..b3d804e 100644
--- a/Bank/BankClientApp/Views/Home/Privacy.cshtml
+++ b/Bank/BankClientApp/Views/Home/Privacy.cshtml
@@ -17,7 +17,7 @@
diff --git a/Bank/BankClientApp/Views/Home/Register.cshtml b/Bank/BankClientApp/Views/Home/Register.cshtml
new file mode 100644
index 0000000..8e272ba
--- /dev/null
+++ b/Bank/BankClientApp/Views/Home/Register.cshtml
@@ -0,0 +1,28 @@
+@{
+ ViewData["Title"] = "Register";
+}
+
+
+
Регистрация
+
+
\ No newline at end of file
diff --git a/Bank/BankClientApp/Views/Home/RequestCreate.cshtml b/Bank/BankClientApp/Views/Home/RequestCreate.cshtml
new file mode 100644
index 0000000..a1a8d93
--- /dev/null
+++ b/Bank/BankClientApp/Views/Home/RequestCreate.cshtml
@@ -0,0 +1,32 @@
+@{
+ ViewData["Title"] = "CardCreate";
+}
+
+
Создание карты
+
+
diff --git a/Bank/BankClientApp/Views/Home/Requests.cshtml b/Bank/BankClientApp/Views/Home/Requests.cshtml
new file mode 100644
index 0000000..b81a2f6
--- /dev/null
+++ b/Bank/BankClientApp/Views/Home/Requests.cshtml
@@ -0,0 +1,54 @@
+@using BankContracts.ViewModels
+@model List
+@{
+ ViewData["Title"] = "Requests";
+}
+
+
Запросы
+
+
+ @{
+ if (Model == null)
+ {
+
Авторизируйтесь
+ return;
+ }
+
+ Создать запрос
+
+
+
+
+
+ Номер
+ |
+
+ Сумма
+ |
+
+ Время выполнения
+ |
+
+
+
+ @foreach (var item in Model)
+ {
+
+
+ @Html.DisplayFor(modelItem =>
+ item.Id)
+ |
+
+ @Html.DisplayFor(modelItem =>
+ item.Sum)
+ |
+
+ @Html.DisplayFor(modelItem =>
+ item.RequestTime)
+ |
+
+ }
+
+
+ }
+