grafana/public/app/features/admin/partials/new_user.html
Patrick O'Carroll a96194fab5 Styling: Aligned heading (#16456)
* aligned headings on profile, admin and configuration pages

* fixed snapshot
2019-04-09 12:41:02 +02:00

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>