forked from patternfly/angular-patternfly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwizard-test-steps.html
More file actions
28 lines (28 loc) · 1.5 KB
/
Copy pathwizard-test-steps.html
File metadata and controls
28 lines (28 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<pf-wizard-step step-title="First Step" substeps="true" step-id="details" step-priority="0" show-review="true" show-review-details="true">
<div ng-include="'test/wizard/detail-page.html'">
</div>
<pf-wizard-substep step-title="Details - Extra" next-enabled="true" step-id="details-extra" step-priority="1" show-review="true" show-review-details="true" review-template="test/wizard/review-second-template.html">
<form class="form-horizontal">
<pf-form-group pf-label="Lorem" required>
<input id="new-lorem" name="lorem" ng-model="data.lorem" type="text" required/>
</pf-form-group>
<pf-form-group pf-label="Ipsum">
<input id="new-ipsum" name="ipsum" ng-model="data.ipsum" type="text" />
</pf-form-group>
</form>
</pf-wizard-substep>
</pf-wizard-step>
<pf-wizard-step step-title="Second Step" substeps="false" step-id="configuration" step-priority="1" show-review="true" review-template="test/wizard/review-second-template.html" >
<form class="form-horizontal">
<pf-form-group pf-label="Lorem">
<input id="new-lorem" name="lorem" ng-model="data.lorem" type="text"/>
</pf-form-group>
<pf-form-group pf-label="Ipsum">
<input id="new-ipsum" name="ipsum" ng-model="data.ipsum" type="text" />
</pf-form-group>
</form>
</pf-wizard-step>
<pf-wizard-step step-title="Review" substeps="true" step-id="review" step-priority="2">
<div ng-include="'test/wizard/summary.html'"></div>
<div ng-include="'test/wizard/deployment.html'"></div>
</pf-wizard-step>