mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-07 02:59:50 +01:00
e3913128cf
use standard html tag
45 lines
2.2 KiB
HTML
45 lines
2.2 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 well-custom" style="position: absolute; margin-left: 10px; margin-top: 5px; width: 96%;">
|
|
<form name="form" class="css-form form-custom" novalidate>
|
|
<div class="row">
|
|
<div class="col-xs-10 col-md-10">
|
|
<div class="form-group col-md-7">
|
|
<input type="text" class="form-control" placeholder="// 'project_name' | tr //" ng-model="p.projectName" name="uProjectName" ng-change="vm.reset()" ng-model-options="{ debounce: 250 }" project-name required>
|
|
<div class="error-message">
|
|
<div ng-messages="form.$submitted && form.uProjectName.$error">
|
|
<span ng-message="required">// 'project_name_is_required' | tr //</span>
|
|
<span ng-message="projectName">// 'project_name_is_invalid' | tr //</span>
|
|
</div>
|
|
<span ng-show="vm.hasError">// vm.errorMessage | tr //</span>
|
|
</div>
|
|
</div>
|
|
<div class="form-group" style="margin-top: 5px;">
|
|
<label>
|
|
<input type="checkbox" ng-model="vm.isPublic"> // 'public' | tr //
|
|
</label>
|
|
<inline-help help-title="//'inline_help_publicity_title' | tr//" content="//'inline_help_publicity' | tr//"></inline-help>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-2 col-md-2">
|
|
<div class="form-group">
|
|
<button type="submit" class="btn btn-primary" ng-click="vm.addProject(p)">// 'save' | tr //</button>
|
|
<button type="button" class="btn btn-default" ng-click="vm.cancel(form)">// 'cancel' | tr //</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|