30 lines
871 B
HTML
30 lines
871 B
HTML
<template name="newUserStepper">
|
|
<paper-stepper linear selected="0" class="newUserStepper">
|
|
<paper-step id="step0" label="Add a feature">
|
|
<p>
|
|
To get started, add a feature
|
|
</p>
|
|
</paper-step>
|
|
<paper-step id="step1" label="Add an effect">
|
|
<p>
|
|
Add a racial effect to set your speed
|
|
</p>
|
|
</paper-step>
|
|
<paper-step id="step2" label="See the effect in action">
|
|
<p>
|
|
View your speed stat
|
|
</p>
|
|
</paper-step>
|
|
<paper-step id="step3" label="Finish">
|
|
Done! If you get stuck, be sure to check out the <a href="/guide">guide</a>, or ask for help using the feedback form
|
|
<div class="layout vertical end">
|
|
<paper-button class="done-button" style="color: #d13b2e">Finish</paper-button>
|
|
</div>
|
|
</paper-step>
|
|
</paper-stepper>
|
|
</template>
|
|
|
|
<template name="newUserStepperPlaceholder">
|
|
<div style="height: 300px"></div>
|
|
</template>
|