Files
grafana/public/app/features/org/partials/newOrg.html

22 lines
843 B
HTML
Raw Normal View History

<navbar title="Organization" icon="icon-gf icon-gf-users">
</navbar>
2016-03-17 15:14:26 -04:00
<div class="page-container" ng-form="playlistEditForm">
<div class="page-header">
<h1>New Organization</h1>
</div>
2016-03-17 15:14:26 -04:00
<p class="playlist-description">Each organization contains their own dashboards, data sources and configuration, and cannot be shared between orgs. While users may belong to more than one, mutiple organization are most frequently used in multi-tenant deployments. </p>
2016-03-17 15:14:26 -04:00
<div class="gf-form-group">
<div class="gf-form">
<span class="gf-form-label width-10">Org. name</span>
<input type="text" ng-model="newOrg.name" required class="gf-form-input max-width-21" placeholder="organization name">
</div>
<br>
<div class="gf-form-buttons-row">
<button class="btn btn-success" ng-click="createOrg()">Create</button>
</div>
</div>
</div>