mirror of
https://github.com/bitwarden/web
synced 2026-03-01 02:41:13 +00:00
33 lines
1.6 KiB
HTML
33 lines
1.6 KiB
HTML
<div class="modal-header">
|
|
<button type="button" class="close" ng-click="close()" aria-label="Close"><span aria-hidden="true">×</span></button>
|
|
<h4 class="modal-title"><i class="fa fa-cubes"></i> Edit Collection</h4>
|
|
</div>
|
|
<form name="form" ng-submit="form.$valid && submit(collection)" api-form="submitPromise">
|
|
<div class="modal-body">
|
|
<div class="callout callout-danger validation-errors" ng-show="form.$errors">
|
|
<h4>Errors have occured</h4>
|
|
<ul>
|
|
<li ng-repeat="e in form.$errors">{{e}}</li>
|
|
</ul>
|
|
</div>
|
|
<div class="form-group" show-errors>
|
|
<label for="email">Name</label>
|
|
<input type="text" id="name" name="Name" ng-model="collection.name" class="form-control" required api-field />
|
|
</div>
|
|
<div class="callout callout-default">
|
|
<h4><i class="fa fa-info-circle"></i> Note</h4>
|
|
<p>
|
|
Select "Users" from the listing options to manage existing users for this collection. Associate new users by
|
|
managing the user's collection access on the "People" page.
|
|
</p>
|
|
<p>You can associate logins to this collection by sharing from "My vault".</p>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="submit" class="btn btn-primary btn-flat" ng-disabled="form.$loading">
|
|
<i class="fa fa-refresh fa-spin loading-icon" ng-show="form.$loading"></i>Submit
|
|
</button>
|
|
<button type="button" class="btn btn-default btn-flat" ng-click="close()">Close</button>
|
|
</div>
|
|
</form>
|
|
|