From b1e6d3dee9fa6519c65dd7564eac02b9e68bc3ce Mon Sep 17 00:00:00 2001 From: Michael Date: Fri, 7 Apr 2017 21:13:44 -0400 Subject: Developer blog --- Project-Unite/Views/Blog/PostBlog.cshtml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Project-Unite/Views/Blog/PostBlog.cshtml (limited to 'Project-Unite/Views/Blog/PostBlog.cshtml') diff --git a/Project-Unite/Views/Blog/PostBlog.cshtml b/Project-Unite/Views/Blog/PostBlog.cshtml new file mode 100644 index 0000000..e3ad6f7 --- /dev/null +++ b/Project-Unite/Views/Blog/PostBlog.cshtml @@ -0,0 +1,32 @@ +@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.ValidationSummary() +
+
+ + + + + + + + + + + + + + +
Name:@Html.TextBoxFor(Model=>Model.Name, new{@class="form-control"})
Body:@Html.TextAreaFor(Model => Model.Contents, new { @class = "form-control", rows="10" })
+} \ No newline at end of file -- cgit v1.2.3