2017-12-01 06:49:15 -06:00
|
|
|
<page-header model="navModel"></page-header>
|
2015-02-23 04:24:45 -06:00
|
|
|
|
2017-12-01 06:49:15 -06:00
|
|
|
<div class="page-container page-body">
|
|
|
|
<div class="page-sub-heading">
|
2016-02-22 08:56:18 -06:00
|
|
|
<h1>Add new user</h1>
|
2016-02-14 10:37:05 -06:00
|
|
|
</div>
|
2015-02-23 04:24:45 -06:00
|
|
|
|
2016-02-22 08:56:18 -06:00
|
|
|
<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" >
|
2016-02-14 10:37:05 -06:00
|
|
|
</div>
|
2015-02-23 04:24:45 -06:00
|
|
|
|
2016-02-22 08:56:18 -06:00
|
|
|
<div class="gf-form-button-row">
|
2019-02-05 05:05:02 -06:00
|
|
|
<button type="submit" class="btn btn-primary" ng-click="create()">Create</button>
|
2016-02-22 08:56:18 -06:00
|
|
|
</div>
|
2016-02-14 10:37:05 -06:00
|
|
|
</form>
|
2015-02-23 04:24:45 -06:00
|
|
|
</div>
|