summaryrefslogtreecommitdiff
path: root/Project-Unite/Views/Profile
diff options
context:
space:
mode:
Diffstat (limited to 'Project-Unite/Views/Profile')
-rw-r--r--Project-Unite/Views/Profile/ViewProfile.cshtml1
-rw-r--r--Project-Unite/Views/Profile/_NewPost.cshtml14
2 files changed, 0 insertions, 15 deletions
diff --git a/Project-Unite/Views/Profile/ViewProfile.cshtml b/Project-Unite/Views/Profile/ViewProfile.cshtml
deleted file mode 100644
index 0f1cba3..0000000
--- a/Project-Unite/Views/Profile/ViewProfile.cshtml
+++ /dev/null
@@ -1 +0,0 @@
-This is/will be the view profile page. its not done yet \ No newline at end of file
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>
-
-
-