aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/shared-forms/input-toggle-hidden.component.html
blob: f7f9ce403b3a6d5a126c4d2297ec7d465d8b03da (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div class="input-group">
  <input
    [id]="inputId" [autocomplete]="autocomplete" [value]="value" [placeholder]="placeholder" [tabindex]="tabindex"
    [(ngModel)]="value" (ngModelChange)="update()" [readonly]="readonly"
    #input (click)="input.select()" (input)="update()" (change)="update()" [type]="inputType" class="form-control"
  />

  <button *ngIf="withToggle" (click)="toggle()" type="button" class="btn btn-outline-secondary eye-button" [title]="toggleTitle">
    <span class="glyphicon glyphicon-eye-{{ show ? 'open' : 'close' }}"></span>
  </button>

  <button
    *ngIf="withCopy" [cdkCopyToClipboard]="input.value" (click)="activateCopiedMessage()" type="button"
    class="btn btn-outline-secondary text-uppercase" i18n-title title="Copy"
  >
    <my-global-icon iconName="copy"></my-global-icon>
    <span class="copy-text">Copy</span>
  </button>
</div>