File
Index
Properties
|
|
Methods
|
|
Outputs
|
|
Constructor
constructor(modal: BsModalRef)
|
Parameters :
Name |
Type |
Optional |
modal |
BsModalRef
|
No
|
|
Outputs
currentPasswordEmitter
|
Type : EventEmitter
|
Methods
passwordConfirm
|
passwordConfirm()
|
|
<c8y-modal [customFooter]="true" [title]="'Confirm your current password' | translate" #modal>
<form #confirmForm="ngForm" (ngSubmit)="confirmForm.form.valid && passwordConfirm()">
<div class="d-block p-24">
<c8y-form-group [hasWarning]="true">
<label translate for="currentPassword">Enter your password</label>
<input
id="currentPassword"
[(ngModel)]="password"
type="password"
name="password"
class="form-control"
required
/>
<c8y-messages>
<c8y-message translate>
The password of the user that you are currently logged in with.
</c8y-message>
</c8y-messages>
</c8y-form-group>
</div>
<div class="modal-footer separator-top bg-level-0 sticky-bottom">
<button
title="{{ 'Cancel' | translate }}"
class="btn btn-default"
type="button"
(click)="cancel()"
>
{{ 'Cancel' | translate }}
</button>
<button
title="{{ 'Confirm' | translate }}"
class="btn btn-primary"
[attr.data-cy]="'confirm-current-password-confirm-button'"
type="submit"
[disabled]="!confirmForm.form.valid"
>
{{ 'Confirm' | translate }}
</button>
</div>
</form>
</c8y-modal>