valor-software/ng2-bootstrap

View on GitHub
demo/src/app/components/+typeahead/demos/form/form.html

Summary

Maintainability
Test Coverage
<pre class="card card-block card-header">Model: {{model | json}}</pre>

<form>
  <div class="form-group">
    <label for="address">Address</label>
    <input type="text" class="form-control" id="address" required
           [(ngModel)]="model.address" name="address">
  </div>
  <div class="form-group">
    <label for="state">State</label>
    <input id="state" class="form-control" name="state"
           [(ngModel)]="model.state" [typeahead]="states">
  </div>
</form>