hn-dotnet/Apps/Website/Views/Shared/_CommentForm.cshtml
Julien Leicher 66cc78d30e comment-a-link (#24)
Closes #23 refactor to use OwnsMany
2020-12-11 09:46:42 +01:00

12 lines
370 B
Plaintext

@model HN.Application.CommentLinkCommand
<div>
<h2>Add a comment</h2>
<form asp-action="Create" asp-controller="Comments" method="post">
<input type="hidden" asp-for="@Model.LinkId" />
<textarea asp-for="@Model.Content"></textarea>
<span asp-validation-for="@Model.Content"></span>
<button type="submit">Post a comment</button>
</form>
</div>