mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
<navbar icon="fa fa-fw fa-cogs" title="Admin" title-url="admin">
|
|
<nav-button title="Users" title-url="admin/users" icon="icon-gf icon-gf-users"></nav-button>
|
|
</navbar>
|
|
|
|
<div class="page-container">
|
|
<div class="page-header">
|
|
<h1>Add new user</h1>
|
|
</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-success" ng-click="create()">Create</button>
|
|
</div>
|
|
</form>
|
|
</div>
|