2017-06-02 14:00:42 +02:00
|
|
|
<navbar model="navModel"></navbar>
|
2015-02-23 11:24:45 +01:00
|
|
|
|
|
|
|
|
<div class="page-container">
|
2016-02-14 17:37:05 +01:00
|
|
|
<div class="page-header">
|
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">
|
|
|
|
|
<button type="submit" class="btn btn-success" ng-click="create()">Create</button>
|
|
|
|
|
</div>
|
2016-02-14 17:37:05 +01:00
|
|
|
</form>
|
2015-02-23 11:24:45 +01:00
|
|
|
</div>
|