14 lines
275 B
Plaintext
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>
|