Jakub Man | 81d1f0c | 2020-12-21 10:04:09 +0100 | [diff] [blame^] | 1 | <lib-nc-popup title="Add new profile"
|
| 2 | submitBtnText="Save"
|
| 3 | [toolbox]="!loading"
|
| 4 | (submitted)="saveProfile()"
|
| 5 | (canceled)="canceled.emit(true)">
|
| 6 | <div class="text-center">
|
| 7 | <label for="newProfileName" class="nc-big-input-label">Choose a name
|
| 8 | <i *ngIf="loading" class="fa fa-spinner fa-pulse fa-fw"></i></label>
|
| 9 | <input [(ngModel)]="inputVal"
|
| 10 | type="text"
|
| 11 | class="nc-big-input"
|
| 12 | name="profileName"
|
| 13 | id="newProfileName"
|
| 14 | placeholder="Profile name">
|
| 15 | <p class="text-danger">{{error}}</p>
|
| 16 | </div>
|
| 17 | </lib-nc-popup>
|