@model Project_Unite.Models.ApplicationUser @{ ViewBag.Title = "My profile"; } @using (Html.BeginForm()) { @Html.AntiForgeryToken() string val = Html.ValidationSummary().ToHtmlString(); if (!string.IsNullOrWhiteSpace(val)) {
@ViewBag.StatusMessage
Edit your public profile here.
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" })Have a YouTube channel and want to show it off on your profile? Paste it here!
@Html.TextBoxFor(Model => Model.YoutubeUrl, new { @class = "form-control" })Feel free to post a link to your website, if you want to.
@Html.TextBoxFor(Model => Model.Website, new { @class = "form-control" })We reserve the right to remove the links to your YouTube channel or website if they do not follow the community guidelines or they point to malicious sites.
Tell us about yourself!
@Html.TextAreaFor(Model=>Model.Bio)What are you interested in?
@Html.TextAreaFor(Model => Model.Interests)What do you like to do?
@Html.TextAreaFor(Model => Model.Hobbies)At ShiftOS, we take privacy seriously. If you want to hide certain things from your public profile, this is the place to do so.
NOTE: Moderators may still have access to this information for the purpose of community moderation. They will not leak your information.
Should we show your followers on your profile?
@Html.CheckBoxFor(Model => Model.ShowFollowers)Should we show the people you follow on your profile?
@Html.CheckBoxFor(Model => Model.ShowFollowed)Check this to show your registration date on your profile.
@Html.CheckBoxFor(Model => Model.ShowJoinDate)Shall we tell readers how many posts and topics you have made on the forum?
@Html.CheckBoxFor(Model => Model.ShowPostAndTopicCounts)Should we allow users to email you by showing your email address on your profile?
@Html.CheckBoxFor(Model => Model.ShowEmail)Use this field to enter a new email address. Doing so will cause your account to require reactivation.
@Html.TextBoxFor(Model=>Model.Email, new { @class = "form-control" })Use this option to change your account's password.
Change password