1234567891011121314151617181920212223242526272829303132333435363738394041 |
- {{!
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you 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 id="ha-step1">
- <h2>{{t admin.highAvailability.wizard.step1.header}}</h2>
- <div class="alert alert-info">
- {{t admin.highAvailability.wizard.step1.body}}
- <div class="alert alert-warn">
- {{t admin.highAvailability.wizard.step1.alert}}
- </div>
- </div>
- <div {{bindAttr class=":control-group view.showInputError:error :form-horizontal :nameserviceid-input"}}>
- <label class="control-label">{{t admin.highAvailability.wizard.step1.nameserviceid}}:</label>
- <div class="controls">
- {{view Ember.TextField valueBinding="content.nameServiceId"}}
- <span {{bindAttr class=":help-inline view.showInputError::hidden"}}>
- {{t admin.highAvailability.wizard.step1.nameserviceid.error}}
- </span>
- </div>
- </div>
- <div class="btn-area">
- <a {{bindAttr class=":btn controller.isNameServiceIdValid::disabled :btn-success :pull-right"}} {{action next target="controller"}}>{{t common.next}} →</a>
- </div>
- </div>
|