summaryrefslogtreecommitdiff
path: root/Views/Products/Create.cshtml
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2023-06-03 07:41:46 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2023-06-03 07:41:46 +0300
commit3bade8859bcd938b85c39ab16eaa0dcf8e01535f (patch)
tree9157e3f27d8007206c12d5ec0cf5f2936295c0e7 /Views/Products/Create.cshtml
parent81c1fc0c14253457c3c4fc24735e787ace1db70b (diff)
Mass refactoring
Diffstat (limited to 'Views/Products/Create.cshtml')
-rw-r--r--Views/Products/Create.cshtml37
1 files changed, 37 insertions, 0 deletions
diff --git a/Views/Products/Create.cshtml b/Views/Products/Create.cshtml
new file mode 100644
index 0000000..4a6732c
--- /dev/null
+++ b/Views/Products/Create.cshtml
@@ -0,0 +1,37 @@
+@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
+@model MyDarling.Models.Product
+
+<!DOCTYPE html>
+<html>
+
+<head>
+ <title>New bundle</title>
+ <link href="/lib/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
+</head>
+
+<body>
+ <nav class="navbar navbar-dark bg-primary" aria-label="breadcrumb">
+ <a class="navbar-brand mx-4" href="/Products"><img height="30" src="/assets/img/logo.svg"></a>
+ <a href="/Account/logout"><button class="btn btn-outline-light mx-4">Выйти</button></a>
+ </nav>
+ <div class="row container-fluid justify-content-center">
+ <form asp-action="Create" method="post" class="m-2 col-8">
+ <div asp-validation-summary="All"></div>
+ <div class="form-group">
+ <label asp-for="Name" class="form-label">Название:</label>
+ <input asp-for="Name" class="form-control" />
+ </div>
+ <div class="form-group">
+ <label asp-for="Description" class="form-label">Описание:</label>
+ @Html.TextAreaFor(model => model.Description, new { @class="form-control", @rows = 2 })
+ </div>
+ <div class="form-group">
+ <label asp-for="Price" class="form-label">Цена:</label>
+ <input asp-for="Price" class="form-control" />
+ </div>
+ <button type="submit" class="btn btn-outline-success mt-3">Сохранить</button>
+ </form>
+ </div>
+</body>
+
+</html> \ No newline at end of file