|
@@ -16,32 +16,36 @@
|
|
|
* limitations under the License.
|
|
|
}}
|
|
|
|
|
|
-<h2>{{t admin.kerberos.wizard.step1.header}}</h2>
|
|
|
-<p class="alert alert-info">
|
|
|
- {{t admin.kerberos.wizard.step1.info.body}}
|
|
|
-</p>
|
|
|
-<div class="alert">
|
|
|
- {{t admin.kerberos.wizard.step1.alert.body}}
|
|
|
-</div>
|
|
|
+<div id="kerberos-wizard-step1">
|
|
|
+ <h2>{{t admin.kerberos.wizard.step1.header}}</h2>
|
|
|
|
|
|
-<div class="step1-options-body">
|
|
|
- {{t admin.kerberos.wizard.step1.body.text}}
|
|
|
- {{#each option in options}}
|
|
|
- <label>
|
|
|
- {{view Ember.RadioButton name="option.displayName" selectionBinding="selectedItem" valueBinding="option.value"}} {{option.displayName}}
|
|
|
- </label>
|
|
|
- {{/each}}
|
|
|
- <br/>
|
|
|
-</div>
|
|
|
-<div class="alert alert-info step1-prerequisites-body">
|
|
|
- <h5>{{selectedOption.displayName}}:</h5>
|
|
|
- <b>{{t admin.kerberos.wizard.step1.prerequisites.label}}</b> <br/> <br/>
|
|
|
- {{#each condition in selectedOption.preConditions}}
|
|
|
- <label class="checkbox"> {{view Ember.Checkbox checkedBinding="condition.checked"}} {{condition.displayText}} </label>
|
|
|
- {{/each}}
|
|
|
-</div>
|
|
|
+ <p class="alert alert-info">
|
|
|
+ {{t admin.kerberos.wizard.step1.info.body}}
|
|
|
+ </p>
|
|
|
|
|
|
+ <div class="alert">
|
|
|
+ {{t admin.kerberos.wizard.step1.alert.body}}
|
|
|
+ </div>
|
|
|
|
|
|
-<div class="btn-area">
|
|
|
- <a class="btn btn-success pull-right" {{bindAttr disabled="isSubmitDisabled"}} {{action "next" target="controller"}}>{{t common.next}} →</a>
|
|
|
+ <div id="kerberos-step1-options-body">
|
|
|
+ {{t admin.kerberos.wizard.step1.body.text}}
|
|
|
+ {{#each option in options}}
|
|
|
+ <label class="checkbox kerberos-step1-option-radiobutton">
|
|
|
+ {{view Ember.RadioButton name="option.displayName" selectionBinding="selectedItem" valueBinding="option.value"}} {{option.displayName}}
|
|
|
+ </label>
|
|
|
+ {{/each}}
|
|
|
+ <br/>
|
|
|
+ </div>
|
|
|
+ <div class="alert alert-info" id="kerberos-step1-prerequisites-body">
|
|
|
+ <h5>{{selectedOption.displayName}}:</h5>
|
|
|
+ <b>{{t admin.kerberos.wizard.step1.prerequisites.label}}</b> <br/> <br/>
|
|
|
+ {{#each condition in selectedOption.preConditions}}
|
|
|
+ <label class="checkbox kerberos-step1-prerequiste-checkboxes"> {{view Ember.Checkbox checkedBinding="condition.checked"}} {{condition.displayText}} </label>
|
|
|
+ {{/each}}
|
|
|
+ </div>
|
|
|
+
|
|
|
+
|
|
|
+ <div class="btn-area">
|
|
|
+ <a id="submit-kerberos-step1" class="btn btn-success pull-right" {{bindAttr disabled="isSubmitDisabled"}} {{action "next" target="controller"}}>{{t common.next}} →</a>
|
|
|
+ </div>
|
|
|
</div>
|