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 @@
-

Profile settings

+

Profile settings

Edit your public profile here.

+ + @using(Html.BeginForm("ProfilePostback", "Manage")) + { +

Display Name

+

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"}) + +

Full name

+

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" }) + + + }