conveyal/modeify

View on GitHub
client/managers-page/template.html

Summary

Maintainability
Test Coverage
<div class="row">
  <div class="col-lg-12 col-md-12 col-sm-12">
    <h3>Managers
    <form class="form-inline pull-right">
      <input class="form-control" id="givenName" type="text" placeholder="Given name" />
      <input class="form-control" id="surname" type="text" placeholder="Surname" />
      <input class="form-control" id="email" type="email" placeholder="Email" />
      <input class="form-control" id="password" type="text" placeholder="Password" />
      <button class="btn btn-success" on-tap="create"><i class="fa fa-plus"></i> Invite Manager</button>
    </form>
    </h3>
  </div>
  <div class="col-lg-12 col-md-12 col-sm-12">
    <table class="table table-striped">
      <thead>
        <tr>
          <th>Name</th>
          <th>Email</th>
          <th></th>
        </tr>
      </thead>
      <tbody></tbody>
    </table>
  </div>
</div>