diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-03-23 18:00:34 +0100 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-03-23 18:00:34 +0100 |
commit | 9bcf6d9b855e78e274d13fc2f121e2e51259ce21 (patch) | |
tree | 3950ba05e39ee462617a0628c520d8d65d72f427 /frontend/src/app/_pages/profile/profile.component.html | |
parent | c77852e3935319559a3021c0bd74383731a72767 (diff) |
Profile page - izmena profila uskladjena sa back-om.
Diffstat (limited to 'frontend/src/app/_pages/profile/profile.component.html')
-rw-r--r-- | frontend/src/app/_pages/profile/profile.component.html | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/frontend/src/app/_pages/profile/profile.component.html b/frontend/src/app/_pages/profile/profile.component.html index bece7c46..fba95218 100644 --- a/frontend/src/app/_pages/profile/profile.component.html +++ b/frontend/src/app/_pages/profile/profile.component.html @@ -7,12 +7,14 @@ <div class="card mb-4 mb-xl-0"> <div class="card-header">Moj profil</div> <div class="card-body text-center"> - <!-- Profile picture image--> - <img class="img-account-profile rounded-circle mb-2" src="http://bootdey.com/img/Content/avatar/avatar1.png" alt=""> - <!-- Profile picture help block--> - <div class="small font-italic text-muted mb-4">JPG or PNG no larger than 5 MB</div> - <!-- Profile picture upload button--> - <button class="btn btn-primary" type="button">Upload new image</button> + <div class=" image d-flex flex-column justify-content-center align-items-center"> + <!-- Profile picture image--> + <img class="img-account-profile rounded-circle mb-2" src="http://bootdey.com/img/Content/avatar/avatar1.png" alt=""> + <!-- User's info --> + <span>@ {{this.user.username}}</span> + <span class="mt-3" style="font-weight: bold;">{{this.user.firstName}} {{this.user.lastName}}</span> + <span>{{this.email}}</span> + </div> </div> </div> </div> |