mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-08 11:41:54 +01:00
44 lines
2.3 KiB
HTML
44 lines
2.3 KiB
HTML
<!--
|
|
Copyright (c) 2016 VMware, Inc. All Rights Reserved.
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
<div class="well panel-group well-custom" style="margin: 0; position: absolute; width: 98%;">
|
|
<div class="row">
|
|
<form name="form" class="css-form form-custom" novalidate>
|
|
<div class="col-xs-10 col-md-10">
|
|
<div class="form-group col-md-6">
|
|
<input type="text" class="form-control" id="addUsername" placeholder="// 'username' | tr //" ng-model="pm.username" name="uUsername" ng-model-options="{ debounce: 250 }" ng-change="vm.reset()" required>
|
|
<div class="error-message">
|
|
<div ng-messages="form.$submitted && form.uUsername.$error">
|
|
<span ng-message="required">// 'username_is_required' | tr //</span>
|
|
</div>
|
|
<span ng-show="vm.hasError">// vm.errorMessage | tr //</span>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="roleIdList">// 'role' | tr //:</label>
|
|
<inline-help help-title="//'inline_help_role_title' | tr//" content="//'inline_help_role' | tr//"></inline-help>
|
|
<span ng-repeat="role in vm.roles">
|
|
<input type="radio" name="role" ng-model="vm.optRole" value="//role.id//"> //role.name | tr//
|
|
</span>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-2 col-md-2">
|
|
<div class="form-group">
|
|
<button type="submit" class="btn btn-primary" id="btnSave" ng-click="vm.save(pm)">// 'save' | tr //</button>
|
|
<button type="button" class="btn btn-default" id="btnCancel" ng-click="vm.cancel(form)">// 'cancel' | tr //</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div> |