<app-page-header [pathTitle]="pathTitle"></app-page-header> <div class="bg-card-white"> </div> <div class="block-main-content"> <div class="text-lg font-bold py-2 px-8 text-primary"> ตั้งค่าผู้ใช้งาน </div> <div class="page"> <div class="border-b border-gray-200 dark:border-white/10 px-8"> <nav class="-mb-0.5 flex space-x-6 rtl:space-x-reverse"> <a class="text-base font-medium hs-tab-active:text-lg hs-tab-active:font-bold hs-tab-active:border-secondary hs-tab-active:text-secondary pb-3 inline-flex items-center gap-2 border-b-[3px] border-transparent whitespace-nowrap text-gray-500 dark:text-white/70 hover:text-secondary active" href="javascript:void(0);" id="underline-item-1" data-hs-tab="#underline-1" aria-controls="underline-1" (click)="currentPage =1 ;pathTitle = ['การจัดการข้อมูลองค์กร', 'ตั้งค่าผู้ใช้งาน','สร้างชื่อผู้ใช้งาน']"> สร้างชื่อผู้ใช้งาน </a> <a class="text-base font-medium hs-tab-active:text-lg hs-tab-active:font-bold hs-tab-active:border-secondary hs-tab-active:text-secondary pb-3 px-1 inline-flex items-center gap-2 border-b-[3px] border-transparent whitespace-nowrap text-gray-500 dark:text-white/70 hover:text-secondary" href="javascript:void(0);" id="underline-item-2" data-hs-tab="#underline-2" aria-controls="underline-2" (click)="currentPage =2 ;pathTitle = ['การจัดการข้อมูลองค์กร', 'ตั้งค่าผู้ใช้งาน','กำหนดรหัสผ่าน']"> กำหนดรหัสผ่าน </a> <a class="text-base font-medium hs-tab-active:text-lg hs-tab-active:font-bold hs-tab-active:border-secondary hs-tab-active:text-secondary pb-3 px-1 inline-flex items-center gap-2 border-b-[3px] border-transparent whitespace-nowrap text-gray-500 dark:text-white/70 hover:text-secondary" href="javascript:void(0);" id="underline-item-3" data-hs-tab="#underline-3" aria-controls="underline-3" (click)="currentPage =3 ;pathTitle = ['การจัดการข้อมูลองค์กร', 'ตั้งค่าผู้ใช้งาน','จัดการผู้ใช้งาน']"> จัดการผู้ใช้งาน </a> </nav> </div> <div class="mt-3 px-2rem !-mt-3 pt-50px"> <div *ngIf="currentPage==1" id="underline-1" role="tabpanel" aria-labelledby="underline-item-1"> <app-user-settings></app-user-settings> </div> <div *ngIf="currentPage==2" id="underline-2" class="hidden" role="tabpanel" aria-labelledby="underline-item-2"> <app-set-a-password></app-set-a-password> </div> <div *ngIf="currentPage==3" id="underline-3" class="hidden" role="tabpanel" aria-labelledby="underline-item-3"> <app-manage-user></app-manage-user> </div> </div> </div> </div>