diff options
Diffstat (limited to 'Project-Unite/Views/Forum/PostReply.cshtml')
| -rw-r--r-- | Project-Unite/Views/Forum/PostReply.cshtml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Project-Unite/Views/Forum/PostReply.cshtml b/Project-Unite/Views/Forum/PostReply.cshtml index 2305204..6080a79 100644 --- a/Project-Unite/Views/Forum/PostReply.cshtml +++ b/Project-Unite/Views/Forum/PostReply.cshtml @@ -12,7 +12,11 @@ <table class="table"> <tr> - <td>@Html.DisplayNameFor(Model => Model.Body) + <td><strong>Subject:</strong></td> + <td>@Html.TextBoxFor(Model=>Model.Subject, new{@class="form-control"})</td> + </tr> + <tr> + <td style="width:25%;">@Html.DisplayNameFor(Model => Model.Body) <p>This is the content of your topic. You can use Markdown formatting to style your post.</p> </td> <td>@Html.TextAreaFor(Model => Model.Body, new { @class = "form-control", style = "width:100%", rows = "10" })</td> |
