You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/lnd/wallet/unlock/unlock.component.html

15 lines
868 B
HTML

<div fxLayout="column" class="padding-gap mb-2">
<form fxLayout="column" fxLayout.gt-sm="row wrap" fxLayoutAlign="start" fxLayoutAlign.gt-sm="space-between">
<mat-form-field fxLayout="column" fxFlex="100" fxLayoutAlign="start">
<mat-label>Password</mat-label>
<input autoFocus matInput type="password" name="walletPassword" tabindex="1" required [(ngModel)]="walletPassword">
<mat-hint>Enter Wallet Password</mat-hint>
<mat-error *ngIf="!walletPassword">Wallet password is required.</mat-error>
</mat-form-field>
<div fxLayout="row" class="mt-2">
<button class="mr-1" mat-stroked-button color="primary" tabindex="2" type="reset" (click)="resetData()">Clear Field</button>
<button mat-flat-button color="primary" type="submit" tabindex="3" (click)="onUnlockWallet()">Unlock Wallet</button>
</div>
</form>
</div>