0
0
MyDarling/Views/Bundle/Create.cshtml

33 lines
1.1 KiB
Plaintext
Raw Normal View History

2023-02-16 09:01:18 +03:00
@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers
@model MyDarling.Models.UnderwearBundle
<!DOCTYPE html>
<html>
<head>
<title>New bundle</title>
<link href="/lib/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
</head>
<body>
<container>
2023-02-20 21:53:21 +03:00
<form asp-action="Create" method="post" class="m-2">
2023-02-16 09:01:18 +03:00
<div asp-validation-summary="All"></div>
<div class="form-group">
<label asp-for="Name" class="form-label">Name:</label>
<input asp-for="Name" class="form-control" />
</div>
<div class="form-group">
<label asp-for="Description" class="form-label">Descrition:</label>
@Html.TextAreaFor(model => model.Description, new { @class="form-control", @rows = 2 })
2023-02-16 09:01:18 +03:00
</div>
<div class="form-group">
<label asp-for="Price" class="form-label">Price:</label>
2023-02-20 21:53:21 +03:00
<input asp-for="Price" class="form-control" />
2023-02-16 09:01:18 +03:00
</div>
<button type="submit" class="btn btn-primary mt-3">Submit</button>
</form>
</container>
</body>
</html>