55 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!--
 | 
						|
  ~ Copyright 2016 Red Hat, Inc. and/or its affiliates
 | 
						|
  ~ and other contributors as indicated by the @author tags.
 | 
						|
  ~
 | 
						|
  ~ 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="col-sm-9 col-md-10 col-sm-push-3 col-md-push-2">
 | 
						|
 | 
						|
    <ol class="breadcrumb">
 | 
						|
        <li><a href="#/realms/{{realm.realm}}/client-initial-access">{{:: 'initial-access-tokens' | translate}}</a></li>
 | 
						|
        <li>{{:: 'add-client-reg-trusted-host' | translate}}</li>
 | 
						|
    </ol>
 | 
						|
 | 
						|
    <h1>{{:: 'add-client-reg-trusted-host' | translate}}</h1>
 | 
						|
 | 
						|
    <form class="form-horizontal" name="createForm" novalidate kc-read-only="!access.manageRealm">
 | 
						|
 | 
						|
        <div class="form-group">
 | 
						|
            <label class="col-md-2 control-label" for="hostName">{{:: 'hostname' | translate}} </label>
 | 
						|
            <div class="col-sm-6">
 | 
						|
                <input class="form-control" type="text" id="hostName" name="hostName" data-ng-model="hostName">
 | 
						|
            </div>
 | 
						|
            <kc-tooltip>{{:: 'client-reg-hostname.tooltip' | translate}}</kc-tooltip>
 | 
						|
        </div>
 | 
						|
 | 
						|
        <div class="form-group">
 | 
						|
            <label class="col-md-2 control-label" for="count">{{:: 'count' | translate}} </label>
 | 
						|
            <div class="col-sm-6">
 | 
						|
                <input class="form-control" type="text" id="count" name="count" required min="1" max="10000" data-ng-model="count">
 | 
						|
            </div>
 | 
						|
            <kc-tooltip>{{:: 'client-reg-count.tooltip' | translate}}</kc-tooltip>
 | 
						|
        </div>
 | 
						|
 | 
						|
        <div class="form-group">
 | 
						|
            <div class="col-md-10 col-md-offset-2" data-ng-show="access.manageRealm">
 | 
						|
                <button kc-save>{{:: 'save' | translate}}</button>
 | 
						|
                <button kc-cancel data-ng-click="cancel()">{{:: 'cancel' | translate}}</button>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </form>
 | 
						|
 | 
						|
</div>
 | 
						|
 | 
						|
<kc-menu></kc-menu> |