Bisq markets: Display terms of service and language selector (except on official markets).

refs #510
This commit is contained in:
softsimon
2021-05-12 14:51:55 +04:00
parent 693715bfb3
commit 96a85d5d31
8 changed files with 66 additions and 41 deletions

View File

@@ -0,0 +1,5 @@
<div [formGroup]="languageForm" class="text-small text-center mt-4">
<select formControlName="language" class="custom-select custom-select-sm form-control-secondary form-control mx-auto" style="width: 130px;" (change)="changeLanguage()">
<option *ngFor="let lang of languages" [value]="lang.code">{{ lang.name }}</option>
</select>
</div>