Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
portal-apps-manage
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
angular
portal-apps-manage
Commits
a52f8af8
Project 'angular/myAppraisal' was moved to 'angular/mySkill-x'. Please update any links and bookmarks that may still have the old path.
Commit
a52f8af8
authored
Jul 18, 2025
by
Natthaphat
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
เพิ่มยืนยันรหัสผ่าน
parent
aa8d5361
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
4 deletions
+15
-4
user-setting.component.html
.../user-management/user-setting/user-setting.component.html
+15
-4
No files found.
src/app/DPU/common/user-management/user-setting/user-setting.component.html
View file @
a52f8af8
...
...
@@ -301,7 +301,7 @@
</div>
</div>
<div
class=
"xl:col-span-
6
col-span-12"
>
<div
class=
"xl:col-span-
12
col-span-12"
>
<label
for=
"deal-title"
class=
"form-label"
>
{{ 'Email' | translate }}
</label>
<input
type=
"text"
class=
"form-control"
id=
"deal-title"
placeholder=
""
[(
ngModel
)]="
selectModel
.
email
"
[
disabled
]="
action =
==
'
edit
'"
(
ngModelChange
)="
onEmailChange
($
event
)"
/>
...
...
@@ -324,12 +324,23 @@
<div
class=
"xl:col-span-6 col-span-12"
*
ngIf=
"action !== 'edit'"
>
<label
for=
"password"
class=
"form-label"
>
{{'Password' | translate}}
</label>
<input
type=
"
text
"
class=
"form-control"
id=
"password"
placeholder=
""
[(
ngModel
)]="
password
"
>
<input
type=
"
password
"
class=
"form-control"
id=
"password"
placeholder=
""
[(
ngModel
)]="
password
"
>
<div
class=
"text-danger"
*
ngIf=
"!password"
>
{{ 'Please fill in information' | translate }}
</div>
</div>
<div
class=
"xl:col-span-6 col-span-12"
>
<label
for=
"deal-title"
class=
"form-label"
>
{{'Confirm Password' | translate}}
</label>
<input
type=
"password"
class=
"form-control"
id=
"deal-title"
placeholder=
""
[(
ngModel
)]="
confirmPassword
"
>
<div
class=
"text-danger"
*
ngIf=
"!confirmPassword"
>
{{'Please fill in information' | translate}}
</div>
<div
class=
"text-danger"
*
ngIf=
"confirmPassword && (confirmPassword != password)"
>
{{'Password Not Match' | translate}}
</div>
</div>
<!-- <div class="xl:col-span-12 col-span-12">
<label class="form-label">{{'User Role' | translate}}</label>
...
...
@@ -362,14 +373,14 @@
!
selectModel
.
engFirstname
||
!
selectModel
.
engLastname
||
(!
selectModel
.
email
||
isEmailDuplicate
||
!
selectModel
.
email
.
includes
('@')
||
!
selectModel
.
email
.
includes
('.'))
||
!
password
!
password
||
!
confirmPassword
||
(
confirmPassword
!==
password
)
"
[
disabled
]="
!
selectModel
.
thFirstname
||
!
selectModel
.
thLastname
||
!
selectModel
.
engFirstname
||
!
selectModel
.
engLastname
||
(!
selectModel
.
email
||
isEmailDuplicate
||
!
selectModel
.
email
.
includes
('@')
||
!
selectModel
.
email
.
includes
('.'))
||
!
password
"
>
!
password
||
!
confirmPassword
||
(
confirmPassword
!==
password
)
"
>
{{ 'Save' | translate }}
</button>
</div>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment