include( APP_VIEW .'/user/userSubNav.php' );
include( APP_VIEW .'/user/addView.php' );
break;
<div class="col-md-9">
<div class="pageContent">
<form method="post" action="<?php print APP_DOC_ROOT; ?>/user/create">
<div class="form-group">
<label for="username">Username</label>
<input type="text" class="form-control" id="username" name="username" placeholder="Enter username">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" class="form-control" id="email" name="email" placeholder="Enter email">
</div>
<div class="form-group">
<label for="firstname">First Name</label>
<input type="text" class="form-control" id="firstname" name="firstname" placeholder="Enter first name">
</div>
<div class="form-group">
<label for="lastname">Last Name</label>
<input type="text" class="form-control" id="lastname" name="lastname" placeholder="Enter last name">
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" id="password" name="password" placeholder="Enter password">
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="active" name="active" value="true"> Active
</label>
</div>
<div class="checkbox">
<label>
<input type="checkbox" id="locked" name="locked" value="true"> Locked
</label>
</div>
<button type="submit" id="create" name="create" value="true" class="btn btn-default">
<span class="fa fa-check"></span> Create
</button>
</form>
</div>
</div>
<!-- end page content -->
Stikked
