summaryrefslogtreecommitdiff
path: root/Project-Unite/Views/Profile/_NewPost.cshtml
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-03-23 19:21:10 -0400
committerMichael <[email protected]>2017-03-23 19:21:10 -0400
commitb3e784410dfc2103e099eea2a0252ee9fc8cea91 (patch)
tree1fd6ba056e791e698703fcbd17c675bff2af9e44 /Project-Unite/Views/Profile/_NewPost.cshtml
parentc0d348daa8217ce62e4e70b24f21bb4a00068f30 (diff)
downloadproject-unite-b3e784410dfc2103e099eea2a0252ee9fc8cea91.tar.gz
project-unite-b3e784410dfc2103e099eea2a0252ee9fc8cea91.tar.bz2
project-unite-b3e784410dfc2103e099eea2a0252ee9fc8cea91.zip
hmm.
Diffstat (limited to 'Project-Unite/Views/Profile/_NewPost.cshtml')
-rw-r--r--Project-Unite/Views/Profile/_NewPost.cshtml14
1 files changed, 0 insertions, 14 deletions
diff --git a/Project-Unite/Views/Profile/_NewPost.cshtml b/Project-Unite/Views/Profile/_NewPost.cshtml
deleted file mode 100644
index d1ff6be..0000000
--- a/Project-Unite/Views/Profile/_NewPost.cshtml
+++ /dev/null
@@ -1,14 +0,0 @@
-@model Project_Unite.Models.UserPost
-
-<div class="panel">
- @using (Html.BeginForm("PostContent", "Profiles"))
- {
- @Html.AntiForgeryToken()
- @Html.ValidationSummary();
- @Html.TextAreaFor(Model=>Model.PostContents, new {@class="form-control", rows="5"})
- <input type="submit" class="btn btn-default" value="Post" />
- }
-</div>
-
-
-