summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Project-Unite/Views/Manage/Index.cshtml15
1 files changed, 14 insertions, 1 deletions
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 @@
<div class="col-xs-8">
<div class="tab-content">
<div class="tab-pane fade in active" id="#t_profile">
- <h4>Profile settings</h4>
+ <h2>Profile settings</h2>
<p>Edit your public profile here.</p>
+
+ @using(Html.BeginForm("ProfilePostback", "Manage"))
+ {
+ <h4>Display Name</h4>
+ <p>Your Display Name is what everyone sees you as on the website. This field is required.</p>
+ @Html.TextBoxFor(Model=>Model.DisplayName, new { @class="form-control"})
+
+ <h4>Full name</h4>
+ <p>On your profile page, you can optionally set a full name to display along with the above display name.</p>
+ @Html.TextBoxFor(Model => Model.FullName, new { @class = "form-control" })
+
+ <input type="submit" value="Update" class="btn btn-primary" />
+ }
</div>
</div>
</div>