UNPKG

copay-crown

Version:

A Secure Crown Wallet

25 lines (23 loc) 984 B
<ion-header> <ion-navbar> <ion-title>{{'Wallet Name' | translate}}</ion-title> </ion-navbar> </ion-header> <ion-content> <page-wallet-item [wallet]="wallet"></page-wallet-item> <ion-list> <ion-item-divider text-wrap class="settings-explanation"> <div class="settings-heading" translate>What do you call this wallet?</div> <div class="settings-description" translate>When this wallet was created, it was called &ldquo;{{walletName}}&rdquo;. You can change the name displayed on this device below. </div> </ion-item-divider> <form [formGroup]="walletNameForm" (ngSubmit)="save()"> <ion-item> <ion-label stacked translate>Name</ion-label> <ion-input type="text" formControlName="walletName" [value]="walletNameForm.value.walletName" required></ion-input> </ion-item> <button ion-button block clear type="submit" [disabled]="!walletNameForm.valid">Save</button> </form> </ion-list> </ion-content>