myhn/Apps/Website/Views/Shared/_CommentForm.cshtml
2021-01-08 16:26:19 +01:00

13 lines
420 B
Plaintext

@model MyHN.Application.CommentLinkCommand
<form asp-controller="Links" asp-action="Comment" asp-route-id="@Model.LinkId" method="post">
<input type="hidden" asp-for="@Model.LinkId" />
<div>
<label asp-for="@Model.Content"></label>
<textarea asp-for="@Model.Content"></textarea>
<span asp-validation-for="@Model.Content"></span>
</div>
<button type="submit">Publier le commentaire</button>
</form>