mirror of
https://github.com/grafana/grafana.git
synced 2025-02-15 01:53:33 -06:00
31 lines
1.0 KiB
HTML
31 lines
1.0 KiB
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>
|