From c9d5c86c523aa9af8362077b82ede659ec884b22 Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 17 May 2017 19:29:30 -0400 Subject: [PATCH] display name and fullname --- Project-Unite/Views/Manage/Index.cshtml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) 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" }) + + + }