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