aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html
diff options
context:
space:
mode:
authorRigel Kent <sendmemail@rigelk.eu>2021-01-17 18:13:05 +0100
committerRigel Kent <sendmemail@rigelk.eu>2021-01-17 18:13:05 +0100
commit52a3f561f5357d076ddc36897d5e1d0fc60a8730 (patch)
tree318450ec74b2d1ccfb872617d23d152042dd86de /client/src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html
parent111e6c1807dac4230014bd295118c6b3a51be8f5 (diff)
downloadPeerTube-52a3f561f5357d076ddc36897d5e1d0fc60a8730.tar.gz
PeerTube-52a3f561f5357d076ddc36897d5e1d0fc60a8730.tar.zst
PeerTube-52a3f561f5357d076ddc36897d5e1d0fc60a8730.zip
add username information in profile settings
Diffstat (limited to 'client/src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html')
-rw-r--r--client/src/app/+my-account/my-account-settings/my-account-profile/my-account-profile.component.html11
1 files changed, 11 insertions, 0 deletions
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
@@ -3,6 +3,17 @@
3<form role="form" (ngSubmit)="updateMyProfile()" [formGroup]="form"> 3<form role="form" (ngSubmit)="updateMyProfile()" [formGroup]="form">
4 4
5 <div class="form-group"> 5 <div class="form-group">
6 <label i18n for="user-name">User name</label>
7 <input
8 type="text" id="user-name" class="form-control"
9 formControlName="user-name"
10 >
11 <div class="text-muted" i18n>
12 People can find you @{{ user.username }}@{{ instanceHost }}
13 </div>
14 </div>
15
16 <div class="form-group">
6 <label i18n for="display-name">Display name</label> 17 <label i18n for="display-name">Display name</label>
7 <input 18 <input
8 type="text" id="display-name" class="form-control" 19 type="text" id="display-name" class="form-control"