fix bug with quote submission

This commit is contained in:
Michael 2017-05-31 19:23:00 -04:00
parent b83a26c5a0
commit c8eccc638b

View file

@ -31,7 +31,7 @@
<dt>Year</dt> <dt>Year</dt>
<dd>@Html.TextBoxFor(Model=>Model.Year, new { @type = "number", @class = "form-control" })</dd> <dd>@Html.TextBoxFor(Model=>Model.Year, new { @type = "number", @class = "form-control" })</dd>
<dt>Quote body</dt> <dt>Quote body</dt>
<dd>@Html.TextAreaFor(Model => Model.AuthorId, new { @class = "form-control" })</dd> <dd>@Html.TextAreaFor(Model => Model.Body, new { @class = "form-control" })</dd>
</dl> </dl>
<input type="submit" value="Submit!" class="btn btn-primary" /> <input type="submit" value="Submit!" class="btn btn-primary" />