EVOLUTION-MANAGER
Edit File: new_user.html
<page-header model="navModel"></page-header> <div class="page-container page-body"> <div class="page-sub-heading"> <h3 class="page-sub-heading">Add new user</h3> </div> <form name="userForm" class="gf-form-group"> <div class="gf-form"> <span class="gf-form-label width-10">Name</span> <input type="text" required ng-model="user.name" class="gf-form-input max-width-20" > </div> <div class="gf-form"> <span class="gf-form-label width-10">Email</span> <input type="email" ng-model="user.email" class="gf-form-input max-width-20" > </div> <div class="gf-form"> <span class="gf-form-label width-10">Username</span> <input type="text" ng-model="user.login" class="gf-form-input max-width-20" > </div> <div class="gf-form"> <span class="gf-form-label width-10">Password</span> <input type="password" required ng-model="user.password" class="gf-form-input max-width-20" > </div> <div class="gf-form-button-row"> <button type="submit" class="btn btn-primary" ng-click="create()">Create</button> </div> </form> </div> <footer />