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

23 lines
865 B
HTML
Raw Normal View History

2017-12-01 13:49:15 +01:00
<page-header model="navModel"></page-header>
2017-12-01 13:49:15 +01:00
<div class="page-container page-body" ng-form="playlistEditForm">
<h2 class="page-sub-heading">
New Organization
</h2>
2018-04-13 19:48:37 +02: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, multiple organization are most frequently used in multi-tenant deployments. </p>
<form>
<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 type="submit" class="btn btn-success" ng-click="createOrg()">Create</button>
</div>
2016-03-17 15:14:26 -04:00
</div>
</form>
</div>