diff --git a/Project-Unite/Views/Manage/Index.cshtml b/Project-Unite/Views/Manage/Index.cshtml index a40be96..4e32df9 100644 --- a/Project-Unite/Views/Manage/Index.cshtml +++ b/Project-Unite/Views/Manage/Index.cshtml @@ -24,9 +24,22 @@
Edit your public profile here.
+ + @using(Html.BeginForm("ProfilePostback", "Manage")) + { +Your Display Name is what everyone sees you as on the website. This field is required.
+ @Html.TextBoxFor(Model=>Model.DisplayName, new { @class="form-control"}) + +On your profile page, you can optionally set a full name to display along with the above display name.
+ @Html.TextBoxFor(Model => Model.FullName, new { @class = "form-control" }) + + + }