xxxxxxxxxx
1
<!-- Form wizrd -->
2
<div>
3
<!-- Steps -->
4
<ul class="stepper" id="stepper-form-example" data-mdb-stepper-linear="true">
5
<form class="needs-validation stepper-form">
6
<!-- First step -->
7
<li class="stepper-step stepper-active">
8
<div class="stepper-head">
9
<span class="stepper-head-icon">1</span>
10
<span class="stepper-head-text">step1</span>
11
</div>
12
<div class="stepper-content py-3">
13
<div class="form-outline mb-4">
14
<input type="text" id="stepper-form-first-name" class="form-control" required/>
15
<label class="form-label" for="stepper-form-first-name">First name<small class="text-muted">(required)</small></label>
16
<div class="invalid-feedback">invalid</div>
17
</div>
18
19
<div class="form-outline mb-4">
20
<input type="text" id="stepper-form-last-name" class="form-control" required/>
21
<label class="form-label" for="stepper-form-last-name">Last name<small class="text-muted">(required)</small></label>
22
<div class="invalid-feedback">invalid</div>
23
</div>
24
<div class="mb-4">
25
<select class="select" name="country" id="country" label='country' arialabel='country'>
26
<option value="">Please select</option>
27
<option value="USA">USA</option>
28
<option value="UK">UK</option>
29
</select>
30
<label class="form-label select-label mt--2" for="country">Country (required)</label>
31
</div>
32
33
</div>
34
</li>
35
<!-- First step -->
36
37
<!-- Second step -->
38
<li class="stepper-step">
39
<div class="stepper-head">
40
<span class="stepper-head-icon">2</span>
41
<span class="stepper-head-text">step2</span>
42
</div>
43
<div class="stepper-content py-3">
44
<div class="form-outline mb-4">
45
<input type="text" id="form6Example3" class="form-control" required />
46
<label class="form-label" for="form6Example3">Company name<small class="text-muted">(required)</small></label>
47
<div class="invalid-feedback">invalid</div>
48
</div>
49
50
<div class="form-outline mb-4">
51
<input type="text" id="form6Example4" class="form-control" required />
52
<label class="form-label" for="form6Example4">Address<small class="text-muted">(required)</small></label>
53
<div class="invalid-feedback">invalid</div>
54
</div>
55
56
<div class="form-outline mb-4">
57
<input type="email" id="form6Example5" class="form-control" required />
58
<label class="form-label" for="form6Example5">Email<small class="text-muted">(required)</small></label>
59
<div class="invalid-feedback">invalid</div>
60
</div>
61
62
<div class="form-outline mb-4">
63
<input type="number" id="form6Example6" class="form-control" />
64
<label class="form-label" for="form6Example6">Phone<small class="text-muted">(optional)</small></label>
65
<div class="invalid-feedback">invalid</div>
66
</div>
67
</div>
68
</li>
69
<!-- Second step -->
70
71
<!-- Third step -->
72
<li class="stepper-step">
73
<div class="stepper-head">
74
<span class="stepper-head-icon">3</span>
75
<span class="stepper-head-text">step3</span>
76
</div>
77
<div class="stepper-content py-3">
78
<div class="form-outline mb-4">
79
<textarea class="form-control" id="form6Example7" rows="4"></textarea>
80
<label class="form-label" for="form6Example7">Additional information</label>
81
</div>
82
83
<div class="form-check d-flex justify-content-center mb-4">
84
<input class="form-check-input me-2" type="checkbox" value="" id="form6Example8" checked/>
85
<label class="form-check-label" for="form6Example8">Create an account?</label>
86
</div>
87
88
<button type="submit" class="btn btn-success btn-block mb-4">Place order</button>
89
</div>
90
</li>
91
<!-- Third step -->
92
</form>
93
</ul>
94
<!-- Steps -->
95
96
<!-- Buttons -->
97
<div class="d-flex justify-content-center px-3">
98
<button id="form-example-prev-step" class="btn btn-primary w-100 me-2">Previous step</button>
99
<button id="form-example-next-step" class="btn btn-primary w-100">Next step</button>
100
</div>
101
<!-- Buttons -->
102
</div>
103
<!-- Form wizrd -->
1
1
xxxxxxxxxx
1
const stepper = new mdb.Stepper(document.getElementById('stepper-form-example'));
2
3
document.getElementById('form-example-next-step').addEventListener('click', () => {
4
stepper.nextStep();
5
});
6
7
document.getElementById('form-example-prev-step').addEventListener('click', () => {
8
stepper.previousStep();
9
});
Console errors: 0