display name and fullname

This commit is contained in:
Michael 2017-05-17 19:29:30 -04:00
parent eb2d8a1e2c
commit c9d5c86c52

View file

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