-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (46 loc) · 1.81 KB
/
index.html
File metadata and controls
47 lines (46 loc) · 1.81 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<title>Kentor Wizard Exemple</title>
<script src="bower_components/jquery/jquery.min.js"></script>
<script src="bower_components/KentorWizard/js/wizard.js"></script>
<script src="bower_components/jquery-validation/jquery.validate.js"></script>
<script src="js/main.js"></script>
<script src="js/validate.js"></script>
<meta charset="utf-8" />
</head>
<body>
<div>
<form id="target" action="index.html">
<div class="wizard" data-forward-button-text="Next">
<div class="wizard-title-wrapper page-title-divider">
<div class="wizard-title"></div>
</div>
<div class="wizard-header">
<div class="wizard-step-label"></div>
<div class="wizard-info"></div>
</div>
<div class="wizard-step">
<input type="text" required>
</div>
<div id="000" class="wizard-step">
<input type="text" required>
</div>
<div class="wizard-step" data-step-header="Preview" data-forward-button-text="Send">
<p>333333333333333333333</p>
</div>
<div class="wizard-footer">
<div class="wizard-back">
<button type="button" class="cancel wizard-back-button">Back</button>
</div>
<div class="wizard-breadcrumb"></div>
<div class="wizard-forward">
<button type="button" class="wizard-forward-button">Next</button>
</div>
<div class="wizard-message-area"></div>
</div>
</div>
</form>
</div>
</body>
</html>