|  | 
|  | 1 | +<h2>Vertical Stepper Demo</h2> | 
|  | 2 | +<md-vertical-stepper> | 
|  | 3 | +  <md-step> | 
|  | 4 | +    <ng-template mdStepLabel>Fill out your name</ng-template> | 
|  | 5 | +    <md-input-container> | 
|  | 6 | +      <input mdInput placeholder="First Name"> | 
|  | 7 | +      <md-error>This field is required</md-error> | 
|  | 8 | +    </md-input-container> | 
|  | 9 | + | 
|  | 10 | +    <md-input-container> | 
|  | 11 | +      <input mdInput placeholder="Last Name"> | 
|  | 12 | +      <md-error>This field is required</md-error> | 
|  | 13 | +    </md-input-container> | 
|  | 14 | +    <div> | 
|  | 15 | +      <button md-button mdStepperNext type="button">Next</button> | 
|  | 16 | +    </div> | 
|  | 17 | +  </md-step> | 
|  | 18 | + | 
|  | 19 | +  <md-step> | 
|  | 20 | +    <ng-template mdStepLabel> | 
|  | 21 | +      <div>Fill out your phone number</div> | 
|  | 22 | +    </ng-template> | 
|  | 23 | +    <md-input-container> | 
|  | 24 | +      <input mdInput placeholder="Phone number"> | 
|  | 25 | +      <md-error>This field is required</md-error> | 
|  | 26 | +    </md-input-container> | 
|  | 27 | +    <div> | 
|  | 28 | +      <button md-button mdStepperPrevious type="button">Back</button> | 
|  | 29 | +      <button md-button mdStepperNext type="button">Next</button> | 
|  | 30 | +    </div> | 
|  | 31 | +  </md-step> | 
|  | 32 | + | 
|  | 33 | +  <md-step> | 
|  | 34 | +    <ng-template mdStepLabel> | 
|  | 35 | +      <div>Fill out your address</div> | 
|  | 36 | +    </ng-template> | 
|  | 37 | +    <md-input-container> | 
|  | 38 | +      <input mdInput placeholder="Address"> | 
|  | 39 | +      <md-error>This field is required</md-error> | 
|  | 40 | +    </md-input-container> | 
|  | 41 | +    <div> | 
|  | 42 | +      <button md-button mdStepperPrevious type="button">Back</button> | 
|  | 43 | +      <button md-button mdStepperNext type="button">Next</button> | 
|  | 44 | +    </div> | 
|  | 45 | +  </md-step> | 
|  | 46 | + | 
|  | 47 | +  <md-step> | 
|  | 48 | +    <ng-template mdStepLabel>Confirm your information</ng-template> | 
|  | 49 | +    Everything seems correct. | 
|  | 50 | +    <div> | 
|  | 51 | +      <button md-button>Done</button> | 
|  | 52 | +    </div> | 
|  | 53 | +  </md-step> | 
|  | 54 | +</md-vertical-stepper> | 
|  | 55 | + | 
|  | 56 | +<h2>Horizontal Stepper Demo</h2> | 
|  | 57 | +<md-horizontal-stepper> | 
|  | 58 | +  <md-step> | 
|  | 59 | +    <ng-template mdStepLabel>Fill out your name</ng-template> | 
|  | 60 | +    <md-input-container> | 
|  | 61 | +      <input mdInput placeholder="First Name"> | 
|  | 62 | +      <md-error>This field is required</md-error> | 
|  | 63 | +    </md-input-container> | 
|  | 64 | + | 
|  | 65 | +    <md-input-container> | 
|  | 66 | +      <input mdInput placeholder="Last Name"> | 
|  | 67 | +      <md-error>This field is required</md-error> | 
|  | 68 | +    </md-input-container> | 
|  | 69 | +    <div> | 
|  | 70 | +      <button md-button mdStepperNext type="button">Next</button> | 
|  | 71 | +    </div> | 
|  | 72 | +  </md-step> | 
|  | 73 | + | 
|  | 74 | +  <md-step> | 
|  | 75 | +    <ng-template mdStepLabel> | 
|  | 76 | +      <div>Fill out your phone number</div> | 
|  | 77 | +    </ng-template> | 
|  | 78 | +    <md-input-container> | 
|  | 79 | +      <input mdInput placeholder="Phone number"> | 
|  | 80 | +      <md-error>This field is required</md-error> | 
|  | 81 | +    </md-input-container> | 
|  | 82 | +    <div> | 
|  | 83 | +      <button md-button mdStepperPrevious type="button">Back</button> | 
|  | 84 | +      <button md-button mdStepperNext type="button">Next</button> | 
|  | 85 | +    </div> | 
|  | 86 | +  </md-step> | 
|  | 87 | + | 
|  | 88 | +  <md-step> | 
|  | 89 | +    <ng-template mdStepLabel> | 
|  | 90 | +      <div>Fill out your address</div> | 
|  | 91 | +    </ng-template> | 
|  | 92 | +    <md-input-container> | 
|  | 93 | +      <input mdInput placeholder="Address"> | 
|  | 94 | +      <md-error>This field is required</md-error> | 
|  | 95 | +    </md-input-container> | 
|  | 96 | +    <div> | 
|  | 97 | +      <button md-button mdStepperPrevious type="button">Back</button> | 
|  | 98 | +      <button md-button mdStepperNext type="button">Next</button> | 
|  | 99 | +    </div> | 
|  | 100 | +  </md-step> | 
|  | 101 | + | 
|  | 102 | +  <md-step> | 
|  | 103 | +    <ng-template mdStepLabel>Confirm your information</ng-template> | 
|  | 104 | +    Everything seems correct. | 
|  | 105 | +    <div> | 
|  | 106 | +      <button md-button>Done</button> | 
|  | 107 | +    </div> | 
|  | 108 | +  </md-step> | 
|  | 109 | +</md-horizontal-stepper> | 
|  | 110 | + | 
| 1 | 111 | <h2>Horizontal Stepper Demo</h2> | 
| 2 | 112 | <md-horizontal-stepper> | 
| 3 | 113 |   <md-step *ngFor="let step of steps" [label]="step.label"> | 
|  | 
0 commit comments