Headless CMS and Content Managment Hub
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
814 B

<div class="card card-body mb-4">
<h5 class="card-title">{{ 'languages.add.title' | sqxTranslate }}</h5>
<form [formGroup]="addLanguageForm.form" (ngSubmit)="addLanguage()">
<div class="row gx-2">
<div class="col">
<select class="form-select" formControlName="language">
<option *ngFor="let language of newLanguages" [ngValue]="language">{{language.englishName}}</option>
</select>
</div>
<div class="col-auto">
<button type="submit" class="btn btn-success">
{{ 'languages.add' | sqxTranslate }}
</button>
</div>
</div>
</form>
<sqx-form-hint>
{{ 'languages.add.description' | sqxTranslate }}
</sqx-form-hint>
</div>