Teso Business 2.0 angular source code
https://bacwaredev.barhendev.com/teso
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.7 KiB
33 lines
1.7 KiB
<mat-dialog-content class="mat-typography">
|
|
<div class=" py-2 pl-3 pr-3 sm:py-4 md:pl-4 md:pr-6" style="overflow-y: hidden !important;">
|
|
<div style="display: flex;justify-content:space-between;">
|
|
<mat-form-field appearance="outline" style="width: 350px;">
|
|
<mat-label style="margin-right: 48px;">
|
|
<strong class="tileHead">Old Password </strong>
|
|
</mat-label>
|
|
<input matInput style="margin-left:10px;" type="password" >
|
|
</mat-form-field>
|
|
</div>
|
|
<div style="display: flex;justify-content:space-between;">
|
|
<mat-form-field appearance="outline" style="width: 350px;">
|
|
<mat-label style="margin-right: 20px;">
|
|
<strong class="tileHead">New Password</strong>
|
|
</mat-label>
|
|
<input matInput style="margin-left:10px;" type="password" >
|
|
</mat-form-field>
|
|
</div>
|
|
<div style="display: flex;justify-content:space-between;">
|
|
<mat-form-field appearance="outline" style="width: 350px;">
|
|
<mat-label style="margin-right: 48px;">
|
|
<strong class="tileHead">Confirm Password </strong>
|
|
</mat-label>
|
|
<input matInput style="margin-left:10px;" type="password">
|
|
</mat-form-field>
|
|
</div>
|
|
|
|
<div style="display: flex;justify-content:space-between;width: 100%;">
|
|
<button mat-button style="background-color: green;color: white;">Confirm</button>
|
|
<button mat-button style="background-color: maroon;color: white;" [mat-dialog-close]="true" cdkFocusInitial>Cancel</button>
|
|
</div>
|
|
</div>
|
|
</mat-dialog-content>
|