diff --git a/client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html b/client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html index 29823bdec..6d2d7d46e 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html +++ b/client/src/app/+my-account/my-account-settings/my-account-change-email/my-account-change-email.component.html @@ -2,7 +2,8 @@
{{ success }}
- Your current email is {{ user.email }} + Your current email is {{ user.email }}. + It is never shown to the public.
diff --git a/client/src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html b/client/src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html index 818e34ee0..7e6b45386 100644 --- a/client/src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html +++ b/client/src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html @@ -2,6 +2,17 @@
+
+ + +
+ People can find you @{{ user.username }}@{{ instanceHost }} +
+
+
{ this.form.patchValue({ + 'user-name': this.user.username, 'display-name': this.user.account.displayName, description: this.user.account.description }) }) } + get instanceHost () { + return window.location.host + } + updateMyProfile () { const displayName = this.form.value['display-name'] const description = this.form.value['description'] || null