| <!-- |
| Copyright 2020 TATA ELXSI |
| |
| Licensed under the Apache License, Version 2.0 (the 'License'); |
| you may not use this file except in compliance with the License. |
| You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| |
| Author: KUMARAN M (kumaran.m@tataelxsi.co.in), RAJESH S (rajesh.s@tataelxsi.co.in), BARATH KUMAR R (barath.r@tataelxsi.co.in) |
| --> |
| <form [formGroup]="wimNewAccountForm" (ngSubmit)="newWimAccountSubmit()" autocomplete="off"> |
| <div class="modal-header"> |
| <h4 class="modal-title" id="modal-basic-title">{{'PAGE.WIMACCOUNTS.NEWWIM' | translate}}</h4> |
| <button class="button-xs" type="button" class="close" aria-label="Close" (click)="activeModal.close()"> |
| <i class="fas fa-times-circle text-danger"></i> |
| </button> |
| </div> |
| <div class="modal-body modal-body-custom-height"> |
| <div class="form-group row"> |
| <label class="col-sm-12 col-form-label mandatory-label" |
| [ngClass]="{'text-danger': wimNewAccountForm.invalid === true && submitted === true}">{{'MANDATORYCHECK' | translate}}</label> |
| <label class="col-sm-4 col-form-label" for="name">{{'NAME' | translate}}*</label> |
| <div class="col-sm-8 mb-3"> |
| <input autocomplete="off" class="form-control" placeholder="{{'NAME' | translate}}" type="text" |
| formControlName="name" id="name" [ngClass]="{ 'is-invalid': submitted && f.name.errors }" required> |
| </div> |
| </div> |
| <div class="form-group row"> |
| <label class="col-sm-4 col-form-label" for="wim_type">{{'TYPE' | translate}}*</label> |
| <div class="col-sm-8 mb-3"> |
| <ng-select bindLabel="title" bindValue="value" [items]="wimType" placeholder="{{'SELECT' | translate}}" |
| formControlName="wim_type" id="wim_type" [(ngModel)]="wimTypeMod" [addTag]="sharedService.addCustomTag" |
| [ngClass]="{ 'is-invalid': submitted && f.wim_type.errors }" required> |
| </ng-select> |
| <small class="text-info">{{'TYPEINFO' | translate}}</small> |
| </div> |
| </div> |
| <div class="form-group row"> |
| <label class="col-sm-4 col-form-label" for="wim_url">{{'URL' | translate}}*</label> |
| <div class="col-sm-8 mb-3"> |
| <input autocomplete="off" class="form-control" placeholder="{{'URL' | translate}}" type="url" |
| formControlName="wim_url" id="wim_url" [ngClass]="{ 'is-invalid': submitted && f.wim_url.errors }" |
| required> |
| <div *ngIf="wimNewAccountForm.invalid" class="invalid-feedback"> |
| <div *ngIf="f.wim_url.errors && f.wim_url.value">{{'DOMVALIDATIONS.INVALIDURL' | translate}}</div> |
| </div> |
| </div> |
| </div> |
| <div class="form-group row"> |
| <label class="col-sm-4 col-form-label" for="user">{{'PAGE.WIMACCOUNTS.USERNAME' | translate}}*</label> |
| <div class="col-sm-8 mb-3"> |
| <input autocomplete="off" class="form-control" placeholder="{{'PAGE.WIMACCOUNTS.USERNAME' | translate}}" |
| type="text" formControlName="user" id="user" |
| [ngClass]="{ 'is-invalid': submitted && f.user.errors }" required> |
| </div> |
| </div> |
| <div class="form-group row"> |
| <label class="col-sm-4 col-form-label" for="password">{{'PAGE.WIMACCOUNTS.PASSWORD' | translate}}*</label> |
| <div class="col-sm-8 mb-3"> |
| <input autocomplete="off" class="form-control" placeholder="{{'PAGE.WIMACCOUNTS.PASSWORD' | translate}}" |
| type="password" formControlName="password" id="password" |
| [ngClass]="{ 'is-invalid': submitted && f.password.errors }" required> |
| </div> |
| </div> |
| <div class="form-group row"> |
| <label class="col-sm-4 col-form-label" for="description">{{'DESCRIPTION' | translate}}</label> |
| <div class="col-sm-8 mb-3"> |
| <textarea class="form-control" placeholder="{{'DESCRIPTION' | translate}}" type="text" |
| formControlName="description" id="description"></textarea> |
| </div> |
| </div> |
| <div class="form-group row"> |
| <label class="col-sm-4 col-form-label" for="config">{{'CONFIG' | translate}}</label> |
| <div class="col-sm-8"> |
| <textarea class="form-control" placeholder="{{'YAMLCONFIG' | translate}}" formControlName="config" |
| id="config"></textarea> |
| <div class="fileupload-text mt-1 mb-1">{{'FILEUPLOADLABEL' | translate}}</div> |
| <div class="custom-file"> |
| <input type="file" #fileInputConfig class="fileupload custom-file-input" |
| (change)="configFile($event.target.files)" id="customFile"> |
| </div> |
| </div> |
| </div> |
| </div> |
| <div class="modal-footer"> |
| <button type="button" class="btn btn-danger" (click)="activeModal.close()">{{'CANCEL' | translate}}</button> |
| <button type="submit" class="btn btn-primary">{{'CREATE' | translate}}</button> |
| </div> |
| </form> |
| <app-loader [waitingMessage]="message" *ngIf="isLoadingResults"></app-loader> |