diff options
Diffstat (limited to 'Project-Unite')
| -rw-r--r-- | Project-Unite/Views/Profiles/ViewProfile.cshtml | 2 | ||||
| -rw-r--r-- | Project-Unite/Views/Profiles/_NewPost.cshtml | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Project-Unite/Views/Profiles/ViewProfile.cshtml b/Project-Unite/Views/Profiles/ViewProfile.cshtml index b5ed038..2c2b942 100644 --- a/Project-Unite/Views/Profiles/ViewProfile.cshtml +++ b/Project-Unite/Views/Profiles/ViewProfile.cshtml @@ -47,6 +47,7 @@ { <div class="panel"> + <div class="panel-body"> <p><strong>Posted on @post.PostedAt</strong>:</p> <p>@Html.Markdown(post.PostContents)</p> <ul class="nav nav-pills"> @@ -63,6 +64,7 @@ <li><a href="@dislikeLink"><span class="glyphicon glyphicon-thumbs-down"></span> @post.Dislikes.Length</a></li> </ul> + </div> </div> } </div> diff --git a/Project-Unite/Views/Profiles/_NewPost.cshtml b/Project-Unite/Views/Profiles/_NewPost.cshtml index d1ff6be..3188f94 100644 --- a/Project-Unite/Views/Profiles/_NewPost.cshtml +++ b/Project-Unite/Views/Profiles/_NewPost.cshtml @@ -1,6 +1,7 @@ @model Project_Unite.Models.UserPost <div class="panel"> + <div class="panel-body"> @using (Html.BeginForm("PostContent", "Profiles")) { @Html.AntiForgeryToken() @@ -8,6 +9,7 @@ @Html.TextAreaFor(Model=>Model.PostContents, new {@class="form-control", rows="5"}) <input type="submit" class="btn btn-default" value="Post" /> } + </div> </div> |
