Skip to content

Commit

Permalink
fixing
Browse files Browse the repository at this point in the history
Update contact.component.ts
Update contact.component.html
  • Loading branch information
subhahu123 committed Dec 30, 2018
1 parent a0d1a93 commit 5abefe4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/app/contact/contact.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,15 +89,15 @@ <h5 class="bold">Susper</h5>
<label class="col-md-3 control-label" for="textinput">Your Name<sup>*</sup></label>

<div class="col-md-9">
<input id="textinput" name="yourName" type="text" placeholder="Your Name" class="form-control input-md" (ngModelChange)="checkValidity()" [(ngModel)]="nameInput" required="">
<input id="textinput" name="yourName" type="text" placeholder="Your Name" class="form-control input-md" (ngModelChange)="checkValidity()" [(ngModel)]="nameInput" >
</div>
</div>

<div class="form-group">
<label class="col-md-3 control-label"a for="emailinput">Email<sup>*</sup></label>

<div class="col-md-9">
<input id="emailinput" name="email-address" type="email" placeholder="Email Address" class="form-control input-md" (ngModelChange)="checkValidity()" [(ngModel)]="emailInput" required="">
<input id="emailinput" name="email-address" type="email" placeholder="Email Address" class="form-control input-md" (ngModelChange)="checkValidity()" [(ngModel)]="emailInput" >
</div>
</div>

Expand Down Expand Up @@ -322,7 +322,7 @@ <h5 class="bold">Susper</h5>
<option data-countryCode="ZW" value="263">Zimbabwe (+263)</option>
</select>

<input id="telephone" name="telephone" type="number" placeholder="Mobile Number" (ngModelChange)="checkValidity()" [(ngModel)]="tpnoInput" class="form-control input-md" required="">
<input id="telephone" name="telephone" type="number" placeholder="Mobile Number" (ngModelChange)="checkValidity()" [(ngModel)]="tpnoInput" class="form-control input-md" >

</div>
</div>
Expand All @@ -331,7 +331,7 @@ <h5 class="bold">Susper</h5>
<label class="col-md-3 control-label" for="message">Message<sup>*</sup></label>

<div class="col-md-9">
<textarea class="form-control" id="message" name="message" placeholder="Minimum 100 characters required." required="" (ngModelChange)="checkValidity()" [(ngModel)]="contactMessage"></textarea>
<textarea class="form-control" id="message" name="message" placeholder="Minimum 100 characters required." (ngModelChange)="checkValidity()" [(ngModel)]="contactMessage"></textarea>
</div>

</div>
Expand Down

0 comments on commit 5abefe4

Please sign in to comment.