@model Project_Unite.Models.PostBlogViewModel @{ ViewBag.Title = "Post blog"; }
Just fill in the form and we'll get the post up onto the cloud.
@using (Html.BeginForm()) { @Html.AntiForgeryToken() @*SHIT BUGS!*@| Name: | @Html.TextBoxFor(Model=>Model.Name, new{@class="form-control"}) |
| Body: | @Html.TextAreaFor(Model => Model.Contents, new { @class = "form-control", rows="10" }) |