From cdc61eb4ea5309769ad4db84d92594e4dc3dff67 Mon Sep 17 00:00:00 2001 From: Michael Date: Mon, 20 Mar 2017 16:45:17 -0400 Subject: Initial commit (azure deploy test) --- Project-Unite/Views/Forum/PostReply.cshtml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Project-Unite/Views/Forum/PostReply.cshtml (limited to 'Project-Unite/Views/Forum/PostReply.cshtml') diff --git a/Project-Unite/Views/Forum/PostReply.cshtml b/Project-Unite/Views/Forum/PostReply.cshtml new file mode 100644 index 0000000..2305204 --- /dev/null +++ b/Project-Unite/Views/Forum/PostReply.cshtml @@ -0,0 +1,27 @@ +@model Project_Unite.Models.CreateTopicViewModel +@{ + ViewBag.Title = "Post reply"; +} + +

Post reply

+ +@using (Html.BeginForm()) +{ + @Html.AntiForgeryToken() + @Html.HiddenFor(Model => Model.Category) + + + + + + + + + + +
@Html.DisplayNameFor(Model => Model.Body) +

This is the content of your topic. You can use Markdown formatting to style your post.

+
@Html.TextAreaFor(Model => Model.Body, new { @class = "form-control", style = "width:100%", rows = "10" })
+ + +} \ No newline at end of file -- cgit v1.2.3