hn-dotnet/Apps/Website/Views/Links/Create.cshtml
2020-12-04 10:48:16 +01:00

14 lines
275 B
Plaintext

@model HN.Application.AddLinkCommand
@{
ViewData["Title"] = "Post a new link";
}
<form method="post">
<div>
@Html.LabelFor(m => m.Url)
@Html.EditorFor(m => m.Url)
@Html.ValidationMessageFor(m => m.Url)
</div>
<button type="submit">Post!</button>
</form>