<inputmatInputplaceholder="Nombre de la Entidad"formControlName="nombreE">
<inputmatInputplaceholder="Nombre de la Entidad"formControlName="nombreE">
<mat-error*ngIf="myForm.get('nombreE').hasError('required')">Debe ingrear el nombre de la Institución</mat-error>
<mat-error*ngIf="myForm.get('nombreE').hasError('required')">Debe ingresar el nombre de la Institución</mat-error>
<mat-iconmatSuffixmatTooltip="Ingrese el nombre completo de la Institución "class="estilo-edi">help_outline</mat-icon>
</mat-form-field>
</mat-form-field>
<mat-form-fieldclass="example-full-width">
<mat-form-fieldclass="example-full-width">
...
@@ -25,27 +25,30 @@
...
@@ -25,27 +25,30 @@
</mat-option>
</mat-option>
</mat-select>
</mat-select>
<mat-error*ngIf="myForm.get('provincia').hasError('required')">Debe seleccionar una provincia</mat-error>
<mat-error*ngIf="myForm.get('provincia').hasError('required')">Debe seleccionar una provincia</mat-error>
<mat-iconmatSuffixmatTooltip="Seleccione una de las 24 provincias"class="estilo-edi">help_outline</mat-icon>
</mat-form-field>
</mat-form-field>
<mat-form-field>
<mat-form-field>
<mat-label>Ciudad</mat-label>
<mat-label>Ciudad</mat-label>
<inputmatInputformControlName="ciudadE">
<inputmatInputformControlName="ciudadE">
<mat-error*ngIf="myForm.get('ciudadE').hasError('required')">La ciudad es requerida</mat-error>
<mat-error*ngIf="myForm.get('ciudadE').hasError('required')">La ciudad es requerida</mat-error>
<mat-iconmatSuffixmatTooltip="Ingrese la ciudad en la cual se encuentra la institución"class="estilo-edi">help_outline</mat-icon>
</mat-form-field>
</mat-form-field>
<mat-form-field>
<mat-form-field>
<mat-label>Dirección</mat-label>
<mat-label>Dirección</mat-label>
<inputmatInputformControlName="direccionE">
<inputmatInputformControlName="direccionE">
<mat-error*ngIf="myForm.get('direccionE').hasError('required')">La dirección es requerida</mat-error>
<mat-error*ngIf="myForm.get('direccionE').hasError('required')">La dirección es requerida</mat-error>
<mat-error*ngIf="myForm.get('direccionE').hasError('maxLengthExceeded')">La dirección no debe exceder de los 300 caracteres</mat-error>
<mat-error*ngIf="myForm.get('direccionE').hasError('maxLength')">La dirección no debe exceder de los 300 caracteres</mat-error>
<mat-iconmatSuffixmatTooltip="Ingrese la dirección en la cual se encuentra la institución"class="estilo-edi">help_outline</mat-icon>
</mat-form-field>
</mat-form-field>
<mat-form-field>
<mat-form-field>
<mat-label>Teléfono</mat-label>
<mat-label>Teléfono</mat-label>
<inputmatInputplaceholder="Número de teléfono"formControlName="telefonoE">
<inputmatInputplaceholder="Número de teléfono"formControlName="telefonoE">
<mat-error*ngIf="myForm.get('telefonoE').hasError('required')">El teléfono es requerido</mat-error>
<mat-error*ngIf="myForm.get('telefonoE').hasError('required')">El teléfono es requerido</mat-error>
<mat-error*ngIf="myForm.get('telefonoE').hasError('pattern')">Ingresa un número de teléfono válido de Ecuador (comienza con 09 y tiene 10 dígitos)</mat-error>
<mat-error*ngIf="myForm.get('telefonoE').hasError('pattern')">Ingresa un número de teléfono válido de Ecuador</mat-error>
<mat-iconmatSuffixmatTooltip="Ingrese el número convencional"class="estilo-edi">help_outline</mat-icon>