@model Project_Unite.Models.PostBlogViewModel @{ ViewBag.Title = "Post blog"; }

Post a blog

Just fill in the form and we'll get the post up onto the cloud.

@using (Html.BeginForm()) { @Html.AntiForgeryToken() @*SHIT BUGS!*@
@Html.ValidationSummary()
Name: @Html.TextBoxFor(Model=>Model.Name, new{@class="form-control"})
Body: @Html.TextAreaFor(Model => Model.Contents, new { @class = "form-control", rows="10" })
}