-
Notifications
You must be signed in to change notification settings - Fork 1
/
demo.html
38 lines (34 loc) · 892 Bytes
/
demo.html
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
<!DOCTYPE html>
<html>
<head>
<title>wizard-view Demo</title>
<script src="../platform/platform.js"></script>
<link rel="import" href="wizard-view.html">
<link rel="stylesheet" href="demo.css">
</head>
<body unresolved>
<p#title>An example of wizard-view looks like this (the styling is applied only for the demo)</p>
<wizard-view id="element">
<wizard-step active>
<p>The journey now begins!</p>
<p>
<button class="proceed-trigger">Continue...</button>
</p>
</wizard-step>
<wizard-step>
<p>
On the floor there are
<input type="number" />
apples.
</p>
<p>
<button class="proceed-trigger">Eat the apples</button>
</p>
</wizard-step>
<wizard-step>
<p>You found the golden apple!</p>
<p>The journey has ended</p>
</wizard-step>
</wizard-view>
</body>
</html>