step5.hbs 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {{!
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. }}
  18. <div id="kerberos-wizard-step5">
  19. <div id="confirm-configuration">
  20. <h2>{{t admin.kerberos.wizard.step5.header}}</h2>
  21. <p class="alert alert-info">
  22. {{t admin.kerberos.wizard.step5.info.body}}
  23. </p>
  24. <div class="well pre-scrollable">
  25. <p><strong>{{t installer.step0.clusterName.tooltip.title}}</strong>: {{App.router.clusterController.clusterName}}</p>
  26. <p><strong>{{t admin.kerberos.wizard.step1.option.manual}}</strong>: {{App.router.kerberosWizardController.skipClientInstall}}</p>
  27. {{#each App.router.kerberosWizardController.content.serviceConfigProperties}}
  28. {{#if value}}
  29. <p><strong>{{name}}</strong>: {{value}}</p>
  30. {{/if}}
  31. {{/each}}
  32. </div>
  33. <div class="additional btn-area">
  34. <button class="btn btn-danger" {{action exitWizard}}>{{t admin.kerberos.wizard.step5.exitWizard}}</button>
  35. <button class="btn btn-primary pull-right" {{action downloadCSV}}>{{t admin.kerberos.wizard.step5.downloadCSV}}</button>
  36. </div>
  37. <div class="btn-area">
  38. <button id="back-kerberos-step5" class="btn" {{action back}}>&larr; {{t common.back}}</button>
  39. <button id="submit-kerberos-step5" class="btn btn-success pull-right" {{bindAttr disabled="isSubmitDisabled"}}
  40. {{action submit target="controller"}}>{{t common.next}} &rarr;</button>
  41. </div>
  42. </div>
  43. </div>